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

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

There is a newer version: 5.5.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy