amk.sdk.deeplink.entity.request.IndividualRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java Show documentation
Show all versions of java Show documentation
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.
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