amk.sdk.deeplink.entity.model.AMKDeeplinkData 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 AMKDeeplinkData {
private String shortLink;
private String referenceId;
public String getShortLink() {
return shortLink;
}
public String getReferenceId() {
return referenceId;
}
public void setShortLink(String shortLink) {
this.shortLink = shortLink;
}
public void setReferenceId(String referenceId) {
this.referenceId = referenceId;
}
@Override
public String toString() {
return "AMKDeeplinkData{" +
"shortLink='" + shortLink + '\'' +
", referenceId='" + referenceId + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy