com.prowidesoftware.swift.model.mx.dic.Commodity3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
package com.prowidesoftware.swift.model.mx.dic;
import java.math.BigDecimal;
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;
/**
* Data specific to commodities and related fields used as a collateral.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Commodity3", propOrder = {
"clssfctn",
"qty",
"unitPric",
"mktVal"
})
public class Commodity3 {
@XmlElement(name = "Clssfctn")
protected AssetClassCommodity5Choice clssfctn;
@XmlElement(name = "Qty")
protected Quantity13 qty;
@XmlElement(name = "UnitPric")
protected SecuritiesTransactionPrice2Choice unitPric;
@XmlElement(name = "MktVal")
protected BigDecimal mktVal;
/**
* Gets the value of the clssfctn property.
*
* @return
* possible object is
* {@link AssetClassCommodity5Choice }
*
*/
public AssetClassCommodity5Choice getClssfctn() {
return clssfctn;
}
/**
* Sets the value of the clssfctn property.
*
* @param value
* allowed object is
* {@link AssetClassCommodity5Choice }
*
*/
public Commodity3 setClssfctn(AssetClassCommodity5Choice value) {
this.clssfctn = value;
return this;
}
/**
* Gets the value of the qty property.
*
* @return
* possible object is
* {@link Quantity13 }
*
*/
public Quantity13 getQty() {
return qty;
}
/**
* Sets the value of the qty property.
*
* @param value
* allowed object is
* {@link Quantity13 }
*
*/
public Commodity3 setQty(Quantity13 value) {
this.qty = value;
return this;
}
/**
* Gets the value of the unitPric property.
*
* @return
* possible object is
* {@link SecuritiesTransactionPrice2Choice }
*
*/
public SecuritiesTransactionPrice2Choice getUnitPric() {
return unitPric;
}
/**
* Sets the value of the unitPric property.
*
* @param value
* allowed object is
* {@link SecuritiesTransactionPrice2Choice }
*
*/
public Commodity3 setUnitPric(SecuritiesTransactionPrice2Choice value) {
this.unitPric = value;
return this;
}
/**
* Gets the value of the mktVal property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMktVal() {
return mktVal;
}
/**
* Sets the value of the mktVal property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public Commodity3 setMktVal(BigDecimal value) {
this.mktVal = value;
return this;
}
@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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy