
Model.PtsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails Maven / Gradle / Ivy
/*
* 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;
/**
* PtsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails
*/
public class PtsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails {
@SerializedName("settlementAmount")
private String settlementAmount = null;
@SerializedName("settlementCurrency")
private String settlementCurrency = null;
@SerializedName("exchangeRate")
private String exchangeRate = null;
@SerializedName("foreignAmount")
private String foreignAmount = null;
@SerializedName("foreignCurrency")
private String foreignCurrency = null;
public PtsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails settlementAmount(String settlementAmount) {
this.settlementAmount = settlementAmount;
return this;
}
/**
* This is a multicurrency field. It contains the transaction amount (field 4), converted to the Currency used to bill the cardholder's account. This field is returned for OCT transactions.
* @return settlementAmount
**/
@ApiModelProperty(value = "This is a multicurrency field. It contains the transaction amount (field 4), converted to the Currency used to bill the cardholder's account. This field is returned for OCT transactions. ")
public String getSettlementAmount() {
return settlementAmount;
}
public void setSettlementAmount(String settlementAmount) {
this.settlementAmount = settlementAmount;
}
public PtsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails settlementCurrency(String settlementCurrency) {
this.settlementCurrency = settlementCurrency;
return this;
}
/**
* This is a multicurrency-only field. It contains a 3-digit numeric code that identifies the currency used by the issuer to bill the cardholder's account. This field is returned for OCT transactions.
* @return settlementCurrency
**/
@ApiModelProperty(value = "This is a multicurrency-only field. It contains a 3-digit numeric code that identifies the currency used by the issuer to bill the cardholder's account. This field is returned for OCT transactions. ")
public String getSettlementCurrency() {
return settlementCurrency;
}
public void setSettlementCurrency(String settlementCurrency) {
this.settlementCurrency = settlementCurrency;
}
public PtsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails exchangeRate(String exchangeRate) {
this.exchangeRate = exchangeRate;
return this;
}
/**
* Exchange rate returned by the DCC service. Includes a decimal point and a maximum of 4 decimal places.
* @return exchangeRate
**/
@ApiModelProperty(value = "Exchange rate returned by the DCC service. Includes a decimal point and a maximum of 4 decimal places. ")
public String getExchangeRate() {
return exchangeRate;
}
public void setExchangeRate(String exchangeRate) {
this.exchangeRate = exchangeRate;
}
public PtsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails foreignAmount(String foreignAmount) {
this.foreignAmount = foreignAmount;
return this;
}
/**
* Set this field to the converted amount that was returned by the DCC provider.
* @return foreignAmount
**/
@ApiModelProperty(value = "Set this field to the converted amount that was returned by the DCC provider. ")
public String getForeignAmount() {
return foreignAmount;
}
public void setForeignAmount(String foreignAmount) {
this.foreignAmount = foreignAmount;
}
public PtsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails foreignCurrency(String foreignCurrency) {
this.foreignCurrency = foreignCurrency;
return this;
}
/**
* Set this field to the converted amount that was returned by the DCC provider.
* @return foreignCurrency
**/
@ApiModelProperty(value = "Set this field to the converted amount that was returned by the DCC provider. ")
public String getForeignCurrency() {
return foreignCurrency;
}
public void setForeignCurrency(String foreignCurrency) {
this.foreignCurrency = foreignCurrency;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PtsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails ptsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails = (PtsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails) o;
return Objects.equals(this.settlementAmount, ptsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails.settlementAmount) &&
Objects.equals(this.settlementCurrency, ptsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails.settlementCurrency) &&
Objects.equals(this.exchangeRate, ptsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails.exchangeRate) &&
Objects.equals(this.foreignAmount, ptsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails.foreignAmount) &&
Objects.equals(this.foreignCurrency, ptsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails.foreignCurrency);
}
@Override
public int hashCode() {
return Objects.hash(settlementAmount, settlementCurrency, exchangeRate, foreignAmount, foreignCurrency);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PtsV2PaymentsRefundPost201ResponseOrderInformationAmountDetails {\n");
if (settlementAmount != null) sb.append(" settlementAmount: ").append(toIndentedString(settlementAmount)).append("\n");
if (settlementCurrency != null) sb.append(" settlementCurrency: ").append(toIndentedString(settlementCurrency)).append("\n");
if (exchangeRate != null) sb.append(" exchangeRate: ").append(toIndentedString(exchangeRate)).append("\n");
if (foreignAmount != null) sb.append(" foreignAmount: ").append(toIndentedString(foreignAmount)).append("\n");
if (foreignCurrency != null) sb.append(" foreignCurrency: ").append(toIndentedString(foreignCurrency)).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