com.easypost.net.EasyPostResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easypost-api-client Show documentation
Show all versions of easypost-api-client Show documentation
EasyPost Java Client Library for the EasyPost Shipping API
package com.easypost.net;
public class EasyPostResponse {
int responseCode;
String responseBody;
public EasyPostResponse(int responseCode, String responseBody) {
this.responseCode = responseCode;
this.responseBody = responseBody;
// System.out.println(this.responseBody);
}
public int getResponseCode() {
return responseCode;
}
public void setResponseCode(int responseCode) {
this.responseCode = responseCode;
}
public String getResponseBody() {
return responseBody;
}
public void setResponseBody(String responseBody) {
this.responseBody = responseBody;
}
}