All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.easypost.net.EasyPostResponse Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy