/* * 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.annotations.SerializedName; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; /** * 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 OrderAddress { @SerializedName("AmazonOrderId") private String amazonOrderId = null; @SerializedName("ShippingAddress") private Address shippingAddress = null; public OrderAddress amazonOrderId(String amazonOrderId) { this.amazonOrderId = amazonOrderId; return this; } /** * An Amazon-defined order identifier, in 3-7-7 format. * @return amazonOrderId **/ @ApiModelProperty(required = true, value = "An Amazon-defined order identifier, in 3-7-7 format.") public String getAmazonOrderId() { return amazonOrderId; } public void setAmazonOrderId(String amazonOrderId) { this.amazonOrderId = amazonOrderId; } public OrderAddress shippingAddress(Address shippingAddress) { this.shippingAddress = shippingAddress; return this; } /** * Get shippingAddress * @return shippingAddress **/ @ApiModelProperty(value = "") public Address getShippingAddress() { return shippingAddress; } public void setShippingAddress(Address shippingAddress) { this.shippingAddress = shippingAddress; } @Override public boolean equals(java.lang.Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } OrderAddress orderAddress = (OrderAddress) o; return Objects.equals(this.amazonOrderId, orderAddress.amazonOrderId) && Objects.equals(this.shippingAddress, orderAddress.shippingAddress); } @Override public int hashCode() { return Objects.hash(amazonOrderId, shippingAddress); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class OrderAddress {\n"); sb.append(" amazonOrderId: ").append(toIndentedString(amazonOrderId)).append("\n"); sb.append(" shippingAddress: ").append(toIndentedString(shippingAddress)).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 "); } }