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;
  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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy