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;
AddressDetail details;
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;
}
public AddressDetail getAddressDetail() {
return details;
}
public void setAddressDetail(AddressDetail details) {
this.details = details;
}
}