All Downloads are FREE. Search and download functionalities are using the official Maven repository.

amk.sdk.deeplink.entity.request.IndividualRequest Maven / Gradle / Ivy

Go to download

The AMK Deeplink SDK is a library for AMK's merchant that allow them to be able generate deeplink for their user to pay via AMK Bank app.

There is a newer version: 1.1.0
Show newest version
package amk.sdk.deeplink.entity.request;

public class IndividualRequest {
    private String receiveAccountId;
    private String referenceId;
    private String accountInformation;
    private String acquiringBank;
    private String currency;
    private Double amount;
    private String merchantName;
    private String merchantCity;
    private String billNumber;
    private String mobileNumber;
    private String storeLabel;
    private String terminalLabel;

    public IndividualRequest(String receiveAccountId, String referenceId, String accountInformation, String acquiringBank, String currency, Double amount, String merchantName, String merchantCity, String billNumber, String mobileNumber, String storeLabel, String terminalLabel) {
        this.referenceId = referenceId;
        this.receiveAccountId = receiveAccountId;
        this.accountInformation = accountInformation;
        this.acquiringBank = acquiringBank;
        this.currency = currency;
        this.amount = amount;
        this.merchantName = merchantName;
        this.merchantCity = merchantCity;
        this.billNumber = billNumber;
        this.mobileNumber = mobileNumber;
        this.storeLabel = storeLabel;
        this.terminalLabel = terminalLabel;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy