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

com.easypost.model.Error Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
package com.easypost.model;

public class Error {
    String field;
    String message;

    public String getField() { return field; }
    public void setField(String code) {
        this.field = code;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy