amk.sdk.deeplink.entity.request.MerchantRequest 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;
import amk.sdk.deeplink.entity.model.SourceInfo;
public class MerchantRequest {
private String receiveAccountId;
private String referenceId;
private String merchantId;
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;
private SourceInfo sourceInfo;
public MerchantRequest(String receiveAccountId, String referenceId, String merchantId, String acquiringBank, String currency, Double amount, String merchantName, String merchantCity, String billNumber, String mobileNumber, String storeLabel, String terminalLabel, SourceInfo sourceInfo) {
this.referenceId = referenceId;
this.receiveAccountId = receiveAccountId;
this.merchantId = merchantId;
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;
this.sourceInfo = sourceInfo;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy