amk.sdk.deeplink.entity.response.AMKDLResponse 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;
import amk.sdk.deeplink.entity.model.AMKDLStatus;
public class AMKDLResponse {
private AMKDLStatus status;
private T data;
public AMKDLStatus getStatus() {
return status;
}
public void setStatus(AMKDLStatus status) {
this.status = status;
}
public T getData() {
return data;
}
public void setData(T data) {
this.data = data;
}
@Override
public String toString() {
return "AMKDLResponse{" +
"status=" + status +
", data=" + data +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy