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

Model.PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo Maven / Gradle / Ivy

There is a newer version: 0.0.8
Show newest version
/*
 * CyberSource Merged Spec
 * All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
 *
 * OpenAPI spec version: 0.0.1
 * 
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */


package Model;

import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;

/**
 * PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo
 */

public class PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo {
  @SerializedName("firstName")
  private String firstName = null;

  @SerializedName("lastName")
  private String lastName = null;

  @SerializedName("address1")
  private String address1 = null;

  @SerializedName("address2")
  private String address2 = null;

  @SerializedName("locality")
  private String locality = null;

  @SerializedName("administrativeArea")
  private String administrativeArea = null;

  @SerializedName("postalCode")
  private String postalCode = null;

  @SerializedName("country")
  private String country = null;

  @SerializedName("email")
  private String email = null;

  public PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo firstName(String firstName) {
    this.firstName = firstName;
    return this;
  }

   /**
   * Customer's first name. 
   * @return firstName
  **/
  @ApiModelProperty(value = "Customer's first name. ")
  public String getFirstName() {
    return firstName;
  }

  public void setFirstName(String firstName) {
    this.firstName = firstName;
  }

  public PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo lastName(String lastName) {
    this.lastName = lastName;
    return this;
  }

   /**
   * Customer's last name. 
   * @return lastName
  **/
  @ApiModelProperty(value = "Customer's last name. ")
  public String getLastName() {
    return lastName;
  }

  public void setLastName(String lastName) {
    this.lastName = lastName;
  }

  public PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo address1(String address1) {
    this.address1 = address1;
    return this;
  }

   /**
   * First line of the billing street address. 
   * @return address1
  **/
  @ApiModelProperty(value = "First line of the billing street address. ")
  public String getAddress1() {
    return address1;
  }

  public void setAddress1(String address1) {
    this.address1 = address1;
  }

  public PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo address2(String address2) {
    this.address2 = address2;
    return this;
  }

   /**
   * Additional address information. Example: Attention - Accounts Payable 
   * @return address2
  **/
  @ApiModelProperty(value = "Additional address information. Example: Attention - Accounts Payable ")
  public String getAddress2() {
    return address2;
  }

  public void setAddress2(String address2) {
    this.address2 = address2;
  }

  public PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo locality(String locality) {
    this.locality = locality;
    return this;
  }

   /**
   * City of the billing address. 
   * @return locality
  **/
  @ApiModelProperty(value = "City of the billing address. ")
  public String getLocality() {
    return locality;
  }

  public void setLocality(String locality) {
    this.locality = locality;
  }

  public PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo administrativeArea(String administrativeArea) {
    this.administrativeArea = administrativeArea;
    return this;
  }

   /**
   * State of the billing address in the U.S. 
   * @return administrativeArea
  **/
  @ApiModelProperty(value = "State of the billing address in the U.S. ")
  public String getAdministrativeArea() {
    return administrativeArea;
  }

  public void setAdministrativeArea(String administrativeArea) {
    this.administrativeArea = administrativeArea;
  }

  public PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo postalCode(String postalCode) {
    this.postalCode = postalCode;
    return this;
  }

   /**
   * Postal code for the billing address. The postal code must consist of 5 to 9 digits. A 9-digit postal code must follow this format: [5 digits][dash][4 digits]  Example: 12345-6789\" 
   * @return postalCode
  **/
  @ApiModelProperty(value = "Postal code for the billing address. The postal code must consist of 5 to 9 digits. A 9-digit postal code must follow this format: [5 digits][dash][4 digits]  Example: 12345-6789\" ")
  public String getPostalCode() {
    return postalCode;
  }

  public void setPostalCode(String postalCode) {
    this.postalCode = postalCode;
  }

  public PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo country(String country) {
    this.country = country;
    return this;
  }

   /**
   * Billing country. Use the two character ISO Standard Country Codes. 
   * @return country
  **/
  @ApiModelProperty(value = "Billing country. Use the two character ISO Standard Country Codes. ")
  public String getCountry() {
    return country;
  }

  public void setCountry(String country) {
    this.country = country;
  }

  public PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo email(String email) {
    this.email = email;
    return this;
  }

   /**
   * Customer's email address, including the full domain name. 
   * @return email
  **/
  @ApiModelProperty(value = "Customer's email address, including the full domain name. ")
  public String getEmail() {
    return email;
  }

  public void setEmail(String email) {
    this.email = email;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo ptsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo = (PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo) o;
    return Objects.equals(this.firstName, ptsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo.firstName) &&
        Objects.equals(this.lastName, ptsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo.lastName) &&
        Objects.equals(this.address1, ptsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo.address1) &&
        Objects.equals(this.address2, ptsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo.address2) &&
        Objects.equals(this.locality, ptsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo.locality) &&
        Objects.equals(this.administrativeArea, ptsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo.administrativeArea) &&
        Objects.equals(this.postalCode, ptsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo.postalCode) &&
        Objects.equals(this.country, ptsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo.country) &&
        Objects.equals(this.email, ptsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo.email);
  }

  @Override
  public int hashCode() {
    return Objects.hash(firstName, lastName, address1, address2, locality, administrativeArea, postalCode, country, email);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo {\n");
    
    if (firstName != null) sb.append("    firstName: ").append(toIndentedString(firstName)).append("\n");
    if (lastName != null) sb.append("    lastName: ").append(toIndentedString(lastName)).append("\n");
    if (address1 != null) sb.append("    address1: ").append(toIndentedString(address1)).append("\n");
    if (address2 != null) sb.append("    address2: ").append(toIndentedString(address2)).append("\n");
    if (locality != null) sb.append("    locality: ").append(toIndentedString(locality)).append("\n");
    if (administrativeArea != null) sb.append("    administrativeArea: ").append(toIndentedString(administrativeArea)).append("\n");
    if (postalCode != null) sb.append("    postalCode: ").append(toIndentedString(postalCode)).append("\n");
    if (country != null) sb.append("    country: ").append(toIndentedString(country)).append("\n");
    if (email != null) sb.append("    email: ").append(toIndentedString(email)).append("\n");
    sb.append("}");
    return sb.toString();
  }

  /**
   * Convert the given object to string with each line indented by 4 spaces
   * (except the first line).
   */
  private String toIndentedString(java.lang.Object o) {
    if (o == null) {
      // return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }
  
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy