com.easypost.model.Error Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easypost-api-client Show documentation
Show all versions of easypost-api-client Show documentation
EasyPost Java Client Library for the EasyPost Shipping API
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;
}
}