
net.interfax.rest.client.domain.APIResponse 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
Library that enables using InterFAX HTTP APIs using Java
package net.interfax.rest.client.domain;
import java.util.List;
import java.util.Map;
public class APIResponse {
private int statusCode;
private String responseBody;
private Map> headers;
public int getStatusCode() {
return statusCode;
}
public void setStatusCode(final int statusCode) {
this.statusCode = statusCode;
}
public String getResponseBody() {
return responseBody;
}
public void setResponseBody(final String responseBody) {
this.responseBody = responseBody;
}
public Map> getHeaders() {
return headers;
}
public void setHeaders(final Map> headers) {
this.headers = headers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy