amk.sdk.deeplink.entity.model.AMKDLIndividual 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 AMKDLIndividual {
private String accountId;
private String referenceId;
private String accountInformation;
private String acquiringBank;
private AMKDLCurrency currency;
private Double amount;
private String username;
private String city;
private String billNumber;
private String mobileNumber;
private String storeLabel;
private String terminalLabel;
public AMKDLIndividual() {
}
public AMKDLIndividual(String accountId, String referenceId, String accountInformation, String acquiringBank, AMKDLCurrency currency, Double amount, String username, String city, String billNumber, String mobileNumber, String storeLabel, String terminalLabel) {
this.accountId = accountId;
this.referenceId = referenceId;
this.accountInformation = accountInformation;
this.acquiringBank = acquiringBank;
this.currency = currency;
this.amount = amount;
this.username = username;
this.city = city;
this.billNumber = billNumber;
this.mobileNumber = mobileNumber;
this.storeLabel = storeLabel;
this.terminalLabel = terminalLabel;
}
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public String getReferenceId() {
return referenceId;
}
public void setReferenceId(String referenceId) {
this.referenceId = referenceId;
}
public String getAccountInformation() {
return accountInformation;
}
public void setAccountInformation(String accountInformation) {
this.accountInformation = accountInformation;
}
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 getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
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;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy