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

com.smarttransaction.network.SmartTransactionResponseStatus Maven / Gradle / Ivy

package com.smarttransaction.network;

/**
 * Created by Omm on 8/29/2016.
 * user : Omm
 * date : 9/5/2016
 * description : This class used for set the Response which is coming from Server.
 */
public class SmartTransactionResponseStatus {
    private String message;
    private int statusCode;
    private int errorCode;

    public int getStatusCode() {
        return statusCode;
    }

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

    public int getErrorCode() {
        return errorCode;
    }

    public void setErrorCode(int errorCode) {
        this.errorCode = errorCode;
    }

    public String getMessage() {
        return message;

    }

    public void setMessage(String message) {
        this.message = message;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy