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

com.greenback.kit.model.GreenbackError Maven / Gradle / Ivy

There is a newer version: 1.0.39
Show newest version
package com.greenback.kit.model;

public class GreenbackError {
 
    private String category;
    private Integer code;
    private String message;

    public String getCategory() {
        return category;
    }

    public void setCategory(String category) {
        this.category = category;
    }

    public Integer getCode() {
        return code;
    }

    public void setCode(Integer code) {
        this.code = code;
    }

    public String getMessage() {
        return message;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy