amk.sdk.deeplink.entity.response.AMKDLApiResponse 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.response;
public class AMKDLApiResponse {
private String status;
private String responseCode;
private String message;
private Result result;
public String getStatus() {
return status;
}
public String getResponseCode() {
return responseCode;
}
public String getMessage() {
return message;
}
public Result getResult() {
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy