com.payu.sdk.api.model.response.Response Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
A fresh implementation of the PayU API Client for Android
The newest version!
package com.payu.sdk.api.model.response;
public class Response {
private ResponseCode code;
private String error;
public Response() {
}
public ResponseCode getCode() {
return code;
}
public void setCode(ResponseCode code) {
this.code = code;
}
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
@Override public String toString() {
return "{" + "code=" + code + "," + "error=" + error + "}";
}
}