/* * 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 response schema for the getOrderAddress operation. */ @ApiModel(description = "The response schema for the getOrderAddress operation.") @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2020-10-27T15:23:41.622+08:00") public class GetOrderAddressResponse { @SerializedName("payload") private OrderAddress payload = null; @SerializedName("errors") private ErrorList errors = null; public GetOrderAddressResponse payload(OrderAddress payload) { this.payload = payload; return this; } /** * The payload for the getOrderAddress operations. * @return payload **/ @ApiModelProperty(value = "The payload for the getOrderAddress operations.") public OrderAddress getPayload() { return payload; } public void setPayload(OrderAddress payload) { this.payload = payload; } public GetOrderAddressResponse errors(ErrorList errors) { this.errors = errors; return this; } /** * One or more unexpected errors occurred during the getOrderAddress operation. * @return errors **/ @ApiModelProperty(value = "One or more unexpected errors occurred during the getOrderAddress operation.") public ErrorList getErrors() { return errors; } public void setErrors(ErrorList errors) { this.errors = errors; } @Override public boolean equals(java.lang.Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } GetOrderAddressResponse getOrderAddressResponse = (GetOrderAddressResponse) o; return Objects.equals(this.payload, getOrderAddressResponse.payload) && Objects.equals(this.errors, getOrderAddressResponse.errors); } @Override public int hashCode() { return Objects.hash(payload, errors); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class GetOrderAddressResponse {\n"); sb.append(" payload: ").append(toIndentedString(payload)).append("\n"); sb.append(" errors: ").append(toIndentedString(errors)).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 "); } }