com.easypost.model.AddressVerification 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;
import java.util.List;
public class AddressVerification {
Boolean success;
List errors;
public Boolean getSuccess() { return success; }
public void setSuccess(Boolean success) {
this.success = success;
}
public List getErrors() { return errors; }
public void setErrors(List errors) {
this.errors = errors;
}
}