
com.prowidesoftware.swift.model.mx.dic.AmountAndCurrencyExchange2 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Set of elements providing information on the original amount and currency information.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AmountAndCurrencyExchange2", propOrder = {
"instdAmt",
"txAmt",
"cntrValAmt",
"anncdPstngAmt",
"prtryAmt"
})
public class AmountAndCurrencyExchange2 {
@XmlElement(name = "InstdAmt")
protected AmountAndCurrencyExchangeDetails1 instdAmt;
@XmlElement(name = "TxAmt")
protected AmountAndCurrencyExchangeDetails1 txAmt;
@XmlElement(name = "CntrValAmt")
protected AmountAndCurrencyExchangeDetails1 cntrValAmt;
@XmlElement(name = "AnncdPstngAmt")
protected AmountAndCurrencyExchangeDetails1 anncdPstngAmt;
@XmlElement(name = "PrtryAmt")
protected List prtryAmt;
/**
* Gets the value of the instdAmt property.
*
* @return
* possible object is
* {@link AmountAndCurrencyExchangeDetails1 }
*
*/
public AmountAndCurrencyExchangeDetails1 getInstdAmt() {
return instdAmt;
}
/**
* Sets the value of the instdAmt property.
*
* @param value
* allowed object is
* {@link AmountAndCurrencyExchangeDetails1 }
*
*/
public AmountAndCurrencyExchange2 setInstdAmt(AmountAndCurrencyExchangeDetails1 value) {
this.instdAmt = value;
return this;
}
/**
* Gets the value of the txAmt property.
*
* @return
* possible object is
* {@link AmountAndCurrencyExchangeDetails1 }
*
*/
public AmountAndCurrencyExchangeDetails1 getTxAmt() {
return txAmt;
}
/**
* Sets the value of the txAmt property.
*
* @param value
* allowed object is
* {@link AmountAndCurrencyExchangeDetails1 }
*
*/
public AmountAndCurrencyExchange2 setTxAmt(AmountAndCurrencyExchangeDetails1 value) {
this.txAmt = value;
return this;
}
/**
* Gets the value of the cntrValAmt property.
*
* @return
* possible object is
* {@link AmountAndCurrencyExchangeDetails1 }
*
*/
public AmountAndCurrencyExchangeDetails1 getCntrValAmt() {
return cntrValAmt;
}
/**
* Sets the value of the cntrValAmt property.
*
* @param value
* allowed object is
* {@link AmountAndCurrencyExchangeDetails1 }
*
*/
public AmountAndCurrencyExchange2 setCntrValAmt(AmountAndCurrencyExchangeDetails1 value) {
this.cntrValAmt = value;
return this;
}
/**
* Gets the value of the anncdPstngAmt property.
*
* @return
* possible object is
* {@link AmountAndCurrencyExchangeDetails1 }
*
*/
public AmountAndCurrencyExchangeDetails1 getAnncdPstngAmt() {
return anncdPstngAmt;
}
/**
* Sets the value of the anncdPstngAmt property.
*
* @param value
* allowed object is
* {@link AmountAndCurrencyExchangeDetails1 }
*
*/
public AmountAndCurrencyExchange2 setAnncdPstngAmt(AmountAndCurrencyExchangeDetails1 value) {
this.anncdPstngAmt = value;
return this;
}
/**
* Gets the value of the prtryAmt property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the prtryAmt property.
*
*
* For example, to add a new item, do as follows:
*
* getPrtryAmt().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AmountAndCurrencyExchangeDetails2 }
*
*
*/
public List getPrtryAmt() {
if (prtryAmt == null) {
prtryAmt = new ArrayList();
}
return this.prtryAmt;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
/**
* Adds a new item to the prtryAmt list.
* @see #getPrtryAmt()
*
*/
public AmountAndCurrencyExchange2 addPrtryAmt(AmountAndCurrencyExchangeDetails2 prtryAmt) {
getPrtryAmt().add(prtryAmt);
return this;
}
}