/* * 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 monetary value of the order. */ @ApiModel(description = "The monetary value of the order.") @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2020-10-27T15:23:41.622+08:00") public class Money { @SerializedName("CurrencyCode") private String currencyCode = null; @SerializedName("Amount") private String amount = null; public Money currencyCode(String currencyCode) { this.currencyCode = currencyCode; return this; } /** * The three-digit currency code. In ISO 4217 format. * @return currencyCode **/ @ApiModelProperty(value = "The three-digit currency code. In ISO 4217 format.") public String getCurrencyCode() { return currencyCode; } public void setCurrencyCode(String currencyCode) { this.currencyCode = currencyCode; } public Money amount(String amount) { this.amount = amount; return this; } /** * The currency amount. * @return amount **/ @ApiModelProperty(value = "The currency amount.") public String getAmount() { return amount; } public void setAmount(String amount) { this.amount = amount; } @Override public boolean equals(java.lang.Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Money money = (Money) o; return Objects.equals(this.currencyCode, money.currencyCode) && Objects.equals(this.amount, money.amount); } @Override public int hashCode() { return Objects.hash(currencyCode, amount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Money {\n"); sb.append(" currencyCode: ").append(toIndentedString(currencyCode)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).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 "); } }