amk.sdk.deeplink.entity.model.AMKDLMerchant 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.model;
public class AMKDLMerchant {
private String merchantId;
private String referenceId;
private String acquiringBank;
private AMKDLCurrency 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 AMKDLMerchant() {
}
public AMKDLMerchant(String merchantId, String referenceId, String acquiringBank, AMKDLCurrency currency, Double amount, String merchantName, String merchantCity, String billNumber, String mobileNumber, String storeLabel, String terminalLabel, SourceInfo sourceInfo) {
this.merchantId = merchantId;
this.referenceId = referenceId;
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;
}
public String getMerchantId() {
return merchantId;
}
public void setMerchantId(String merchantId) {
this.merchantId = merchantId;
}
public String getReferenceId() {
return referenceId;
}
public void setReferenceId(String referenceId) {
this.referenceId = referenceId;
}
public String getAcquiringBank() {
return acquiringBank;
}
public void setAcquiringBank(String acquiringBank) {
this.acquiringBank = acquiringBank;
}
public AMKDLCurrency getCurrency() {
return currency;
}
public void setCurrency(AMKDLCurrency currency) {
this.currency = currency;
}
public Double getAmount() {
return amount;
}
public void setAmount(Double amount) {
this.amount = amount;
}
public String getMerchantName() {
return merchantName;
}
public void setMerchantName(String merchantName) {
this.merchantName = merchantName;
}
public String getMerchantCity() {
return merchantCity;
}
public void setMerchantCity(String merchantCity) {
this.merchantCity = merchantCity;
}
public String getBillNumber() {
return billNumber;
}
public void setBillNumber(String billNumber) {
this.billNumber = billNumber;
}
public String getMobileNumber() {
return mobileNumber;
}
public void setMobileNumber(String mobileNumber) {
this.mobileNumber = mobileNumber;
}
public String getStoreLabel() {
return storeLabel;
}
public void setStoreLabel(String storeLabel) {
this.storeLabel = storeLabel;
}
public String getTerminalLabel() {
return terminalLabel;
}
public void setTerminalLabel(String terminalLabel) {
this.terminalLabel = terminalLabel;
}
public SourceInfo getSourceInfo() {
return sourceInfo;
}
public void setSourceInfo(SourceInfo sourceInfo) {
this.sourceInfo = sourceInfo;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy