kh.gov.nbc.bakong_khqr.model.KHQRGenerateDeepLinkResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-java Show documentation
Show all versions of sdk-java Show documentation
The standardization of KHQR code specifications will help promote wider use of
mobile retail payments in Cambodia and provide consistent user experience for merchants
and consumers. It can enable interoperability in the payment industry. A common QR code
would facilitate payments among different schemes, e-wallets and banks and would
encourage small merchants to adopt KHQR code as payment method.
KHQR is created for retail or remittance in Cambodia and Cross-Border. It only
requires a single QR for receiving transactions from any payment provider through Bakong
including Bakong App.
The newest version!
package kh.gov.nbc.bakong_khqr.model;
public class KHQRGenerateDeepLinkResponse {
public KHQRGenerateDeepLinkResponse(Data data, int errorCode, int responseCode, String responseMessage) {
this.data = data;
this.errorCode = errorCode;
this.responseCode = responseCode;
this.responseMessage = responseMessage;
}
private Data data;
private int errorCode;
private int responseCode;
private String responseMessage;
public Data getData() {
return data;
}
public void setData(Data data) {
this.data = data;
}
public int getErrorCode() {
return errorCode;
}
public void setErrorCode(int errorCode) {
this.errorCode = errorCode;
}
public int getResponseCode() {
return responseCode;
}
public void setResponseCode(int responseCode) {
this.responseCode = responseCode;
}
public String getResponseMessage() {
return responseMessage;
}
public void setResponseMessage(String responseMessage) {
this.responseMessage = responseMessage;
}
@Override
public String toString() {
return "KHQRGenerateDeepLinkResponse{" +
"data='" + data + '\'' +
", errorCode=" + errorCode +
", responseCode=" + responseCode +
", responseMessage='" + responseMessage + '\'' +
'}';
}
public class Data {
private String shortLink;
public String getShortLink() {
return shortLink;
}
public void setShortLink(String shortLink) {
this.shortLink = shortLink;
}
@Override
public String toString() {
return "Data{" +
"shortLink='" + shortLink + '\'' +
'}';
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy