com.prowidesoftware.swift.model.mx.dic.FinancialInstrument34 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
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.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;
/**
* Security that is a sub-set of an investment fund, and is governed by the same investment fund policy, eg, dividend option or valuation currency.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FinancialInstrument34", propOrder = {
"id",
"nm",
"trfTp",
"qty",
"avrgAcqstnPric",
"ttlBookVal",
"trfeeAcct",
"subAcctDtls",
"rcvgAgtDtls",
"dlvrgAgtDtls"
})
public class FinancialInstrument34 {
@XmlElement(name = "Id", required = true)
protected SecurityIdentification3Choice id;
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "TrfTp", required = true)
@XmlSchemaType(name = "string")
protected TransferType1Code trfTp;
@XmlElement(name = "Qty")
protected Quantity12Choice qty;
@XmlElement(name = "AvrgAcqstnPric")
protected ActiveOrHistoricCurrencyAndAmount avrgAcqstnPric;
@XmlElement(name = "TtlBookVal")
protected ActiveOrHistoricCurrencyAndAmount ttlBookVal;
@XmlElement(name = "TrfeeAcct")
protected Account16 trfeeAcct;
@XmlElement(name = "SubAcctDtls")
protected SubAccount1 subAcctDtls;
@XmlElement(name = "RcvgAgtDtls")
protected PartyIdentificationAndAccount93 rcvgAgtDtls;
@XmlElement(name = "DlvrgAgtDtls")
protected PartyIdentificationAndAccount93 dlvrgAgtDtls;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link SecurityIdentification3Choice }
*
*/
public SecurityIdentification3Choice getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link SecurityIdentification3Choice }
*
*/
public FinancialInstrument34 setId(SecurityIdentification3Choice value) {
this.id = value;
return this;
}
/**
* Gets the value of the nm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNm() {
return nm;
}
/**
* Sets the value of the nm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public FinancialInstrument34 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the trfTp property.
*
* @return
* possible object is
* {@link TransferType1Code }
*
*/
public TransferType1Code getTrfTp() {
return trfTp;
}
/**
* Sets the value of the trfTp property.
*
* @param value
* allowed object is
* {@link TransferType1Code }
*
*/
public FinancialInstrument34 setTrfTp(TransferType1Code value) {
this.trfTp = value;
return this;
}
/**
* Gets the value of the qty property.
*
* @return
* possible object is
* {@link Quantity12Choice }
*
*/
public Quantity12Choice getQty() {
return qty;
}
/**
* Sets the value of the qty property.
*
* @param value
* allowed object is
* {@link Quantity12Choice }
*
*/
public FinancialInstrument34 setQty(Quantity12Choice value) {
this.qty = value;
return this;
}
/**
* Gets the value of the avrgAcqstnPric property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getAvrgAcqstnPric() {
return avrgAcqstnPric;
}
/**
* Sets the value of the avrgAcqstnPric property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public FinancialInstrument34 setAvrgAcqstnPric(ActiveOrHistoricCurrencyAndAmount value) {
this.avrgAcqstnPric = value;
return this;
}
/**
* Gets the value of the ttlBookVal property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getTtlBookVal() {
return ttlBookVal;
}
/**
* Sets the value of the ttlBookVal property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public FinancialInstrument34 setTtlBookVal(ActiveOrHistoricCurrencyAndAmount value) {
this.ttlBookVal = value;
return this;
}
/**
* Gets the value of the trfeeAcct property.
*
* @return
* possible object is
* {@link Account16 }
*
*/
public Account16 getTrfeeAcct() {
return trfeeAcct;
}
/**
* Sets the value of the trfeeAcct property.
*
* @param value
* allowed object is
* {@link Account16 }
*
*/
public FinancialInstrument34 setTrfeeAcct(Account16 value) {
this.trfeeAcct = value;
return this;
}
/**
* Gets the value of the subAcctDtls property.
*
* @return
* possible object is
* {@link SubAccount1 }
*
*/
public SubAccount1 getSubAcctDtls() {
return subAcctDtls;
}
/**
* Sets the value of the subAcctDtls property.
*
* @param value
* allowed object is
* {@link SubAccount1 }
*
*/
public FinancialInstrument34 setSubAcctDtls(SubAccount1 value) {
this.subAcctDtls = value;
return this;
}
/**
* Gets the value of the rcvgAgtDtls property.
*
* @return
* possible object is
* {@link PartyIdentificationAndAccount93 }
*
*/
public PartyIdentificationAndAccount93 getRcvgAgtDtls() {
return rcvgAgtDtls;
}
/**
* Sets the value of the rcvgAgtDtls property.
*
* @param value
* allowed object is
* {@link PartyIdentificationAndAccount93 }
*
*/
public FinancialInstrument34 setRcvgAgtDtls(PartyIdentificationAndAccount93 value) {
this.rcvgAgtDtls = value;
return this;
}
/**
* Gets the value of the dlvrgAgtDtls property.
*
* @return
* possible object is
* {@link PartyIdentificationAndAccount93 }
*
*/
public PartyIdentificationAndAccount93 getDlvrgAgtDtls() {
return dlvrgAgtDtls;
}
/**
* Sets the value of the dlvrgAgtDtls property.
*
* @param value
* allowed object is
* {@link PartyIdentificationAndAccount93 }
*
*/
public FinancialInstrument34 setDlvrgAgtDtls(PartyIdentificationAndAccount93 value) {
this.dlvrgAgtDtls = 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