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

com.github.raduciumag.shapeshift.data.transformation.TransformationResponse Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package com.github.raduciumag.shapeshift.data.transformation;

/**
 * @since January 2016
 */
public class TransformationResponse {

    private Integer statusCode;
    private TransformationResponseBody body;

    public TransformationResponse() {
    }

    public TransformationResponse(final Integer statusCode, final TransformationResponseBody body) {
        this.statusCode = statusCode;
        this.body = body;
    }

    public Integer getStatusCode() {
        return statusCode;
    }

    public void setStatusCode(Integer statusCode) {
        this.statusCode = statusCode;
    }

    public TransformationResponseBody getBody() {
        return body;
    }

    public void setBody(TransformationResponseBody body) {
        this.body = body;
    }

    @Override
    public String toString() {
        return "TransformationResponse{" +
                "statusCode=" + statusCode +
                ", body=" + body +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy