/* * Selling Partner API for Orders * The Selling Partner API for Orders helps you programmatically retrieve order information. These APIs let you develop fast, flexible, custom applications in areas like order synchronization, order research, and demand-based decision support tools. * * OpenAPI spec version: v0 * * * 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 cn.amazon.aws.rp.spapi.clients.model; import java.util.Objects; 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; /** * The shipping address for the order. */ @ApiModel(description = "The shipping address for the order.") @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2020-10-27T15:23:41.622+08:00") public class Address { @SerializedName("Name") private String name = null; @SerializedName("AddressLine1") private String addressLine1 = null; @SerializedName("AddressLine2") private String addressLine2 = null; @SerializedName("AddressLine3") private String addressLine3 = null; @SerializedName("City") private String city = null; @SerializedName("County") private String county = null; @SerializedName("District") private String district = null; @SerializedName("StateOrRegion") private String stateOrRegion = null; @SerializedName("Municipality") private String municipality = null; @SerializedName("PostalCode") private String postalCode = null; @SerializedName("CountryCode") private String countryCode = null; @SerializedName("Phone") private String phone = null; /** * The address type of the shipping address. */ @JsonAdapter(AddressTypeEnum.Adapter.class) public enum AddressTypeEnum { RESIDENTIAL("Residential"), COMMERCIAL("Commercial"); private String value; AddressTypeEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static AddressTypeEnum fromValue(String text) { for (AddressTypeEnum b : AddressTypeEnum.values()) { if (String.valueOf(b.value).equals(text)) { return b; } } return null; } public static class Adapter extends TypeAdapter { @Override public void write(final JsonWriter jsonWriter, final AddressTypeEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public AddressTypeEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return AddressTypeEnum.fromValue(String.valueOf(value)); } } } @SerializedName("AddressType") private AddressTypeEnum addressType = null; public Address name(String name) { this.name = name; return this; } /** * The name. * @return name **/ @ApiModelProperty(required = true, value = "The name.") public String getName() { return name; } public void setName(String name) { this.name = name; } public Address addressLine1(String addressLine1) { this.addressLine1 = addressLine1; return this; } /** * The street address. * @return addressLine1 **/ @ApiModelProperty(value = "The street address.") public String getAddressLine1() { return addressLine1; } public void setAddressLine1(String addressLine1) { this.addressLine1 = addressLine1; } public Address addressLine2(String addressLine2) { this.addressLine2 = addressLine2; return this; } /** * Additional street address information, if required. * @return addressLine2 **/ @ApiModelProperty(value = "Additional street address information, if required.") public String getAddressLine2() { return addressLine2; } public void setAddressLine2(String addressLine2) { this.addressLine2 = addressLine2; } public Address addressLine3(String addressLine3) { this.addressLine3 = addressLine3; return this; } /** * Additional street address information, if required. * @return addressLine3 **/ @ApiModelProperty(value = "Additional street address information, if required.") public String getAddressLine3() { return addressLine3; } public void setAddressLine3(String addressLine3) { this.addressLine3 = addressLine3; } public Address city(String city) { this.city = city; return this; } /** * The city * @return city **/ @ApiModelProperty(value = "The city ") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public Address county(String county) { this.county = county; return this; } /** * The county. * @return county **/ @ApiModelProperty(value = "The county.") public String getCounty() { return county; } public void setCounty(String county) { this.county = county; } public Address district(String district) { this.district = district; return this; } /** * The district. * @return district **/ @ApiModelProperty(value = "The district.") public String getDistrict() { return district; } public void setDistrict(String district) { this.district = district; } public Address stateOrRegion(String stateOrRegion) { this.stateOrRegion = stateOrRegion; return this; } /** * The state or region. * @return stateOrRegion **/ @ApiModelProperty(value = "The state or region.") public String getStateOrRegion() { return stateOrRegion; } public void setStateOrRegion(String stateOrRegion) { this.stateOrRegion = stateOrRegion; } public Address municipality(String municipality) { this.municipality = municipality; return this; } /** * The municipality. * @return municipality **/ @ApiModelProperty(value = "The municipality.") public String getMunicipality() { return municipality; } public void setMunicipality(String municipality) { this.municipality = municipality; } public Address postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code. * @return postalCode **/ @ApiModelProperty(value = "The postal code.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public Address countryCode(String countryCode) { this.countryCode = countryCode; return this; } /** * The country code. A two-character country code, in ISO 3166-1 alpha-2 format. * @return countryCode **/ @ApiModelProperty(value = "The country code. A two-character country code, in ISO 3166-1 alpha-2 format.") public String getCountryCode() { return countryCode; } public void setCountryCode(String countryCode) { this.countryCode = countryCode; } public Address phone(String phone) { this.phone = phone; return this; } /** * The phone number. Not returned for Fulfillment by Amazon (FBA) orders. * @return phone **/ @ApiModelProperty(value = "The phone number. Not returned for Fulfillment by Amazon (FBA) orders.") public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public Address addressType(AddressTypeEnum addressType) { this.addressType = addressType; return this; } /** * The address type of the shipping address. * @return addressType **/ @ApiModelProperty(value = "The address type of the shipping address.") public AddressTypeEnum getAddressType() { return addressType; } public void setAddressType(AddressTypeEnum addressType) { this.addressType = addressType; } @Override public boolean equals(java.lang.Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Address address = (Address) o; return Objects.equals(this.name, address.name) && Objects.equals(this.addressLine1, address.addressLine1) && Objects.equals(this.addressLine2, address.addressLine2) && Objects.equals(this.addressLine3, address.addressLine3) && Objects.equals(this.city, address.city) && Objects.equals(this.county, address.county) && Objects.equals(this.district, address.district) && Objects.equals(this.stateOrRegion, address.stateOrRegion) && Objects.equals(this.municipality, address.municipality) && Objects.equals(this.postalCode, address.postalCode) && Objects.equals(this.countryCode, address.countryCode) && Objects.equals(this.phone, address.phone) && Objects.equals(this.addressType, address.addressType); } @Override public int hashCode() { return Objects.hash(name, addressLine1, addressLine2, addressLine3, city, county, district, stateOrRegion, municipality, postalCode, countryCode, phone, addressType); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Address {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" addressLine1: ").append(toIndentedString(addressLine1)).append("\n"); sb.append(" addressLine2: ").append(toIndentedString(addressLine2)).append("\n"); sb.append(" addressLine3: ").append(toIndentedString(addressLine3)).append("\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" county: ").append(toIndentedString(county)).append("\n"); sb.append(" district: ").append(toIndentedString(district)).append("\n"); sb.append(" stateOrRegion: ").append(toIndentedString(stateOrRegion)).append("\n"); sb.append(" municipality: ").append(toIndentedString(municipality)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" countryCode: ").append(toIndentedString(countryCode)).append("\n"); sb.append(" phone: ").append(toIndentedString(phone)).append("\n"); sb.append(" addressType: ").append(toIndentedString(addressType)).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 "); } }