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

com.smartystreets.api.Response Maven / Gradle / Ivy

There is a newer version: 3.18.3
Show newest version
package com.smartystreets.api;

public class Response {
    private int statusCode;
    private byte[] payload;

    public Response(int statusCode, byte[] payload) {
        this.statusCode = statusCode;
        this.payload = payload;
    }

    //region [ Getters ]

    public int getStatusCode() {
        return this.statusCode;
    }

    public byte[] getPayload() {
        return this.payload;
    }

    //endregion
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy