
com.prowidesoftware.swift.model.mx.dic.Fund4 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;
/**
* Information about an investment fund.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Fund4", propOrder = {
"nm",
"lglNttyIdr",
"id",
"ccy",
"ttlNAV",
"prvsTtlNAV",
"ttlUnitsNb",
"prvsTtlUnitsNb",
"pctgOfFndTtlNAV"
})
public class Fund4 {
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "LglNttyIdr")
protected String lglNttyIdr;
@XmlElement(name = "Id")
protected OtherIdentification4 id;
@XmlElement(name = "Ccy")
protected String ccy;
@XmlElement(name = "TtlNAV")
protected ActiveOrHistoricCurrencyAndAmount ttlNAV;
@XmlElement(name = "PrvsTtlNAV")
protected ActiveOrHistoricCurrencyAndAmount prvsTtlNAV;
@XmlElement(name = "TtlUnitsNb")
protected FinancialInstrumentQuantity1 ttlUnitsNb;
@XmlElement(name = "PrvsTtlUnitsNb")
protected FinancialInstrumentQuantity1 prvsTtlUnitsNb;
@XmlElement(name = "PctgOfFndTtlNAV")
protected BigDecimal pctgOfFndTtlNAV;
/**
* 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 Fund4 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the lglNttyIdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLglNttyIdr() {
return lglNttyIdr;
}
/**
* Sets the value of the lglNttyIdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Fund4 setLglNttyIdr(String value) {
this.lglNttyIdr = value;
return this;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link OtherIdentification4 }
*
*/
public OtherIdentification4 getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link OtherIdentification4 }
*
*/
public Fund4 setId(OtherIdentification4 value) {
this.id = value;
return this;
}
/**
* Gets the value of the ccy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCcy() {
return ccy;
}
/**
* Sets the value of the ccy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Fund4 setCcy(String value) {
this.ccy = value;
return this;
}
/**
* Gets the value of the ttlNAV property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getTtlNAV() {
return ttlNAV;
}
/**
* Sets the value of the ttlNAV property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public Fund4 setTtlNAV(ActiveOrHistoricCurrencyAndAmount value) {
this.ttlNAV = value;
return this;
}
/**
* Gets the value of the prvsTtlNAV property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getPrvsTtlNAV() {
return prvsTtlNAV;
}
/**
* Sets the value of the prvsTtlNAV property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public Fund4 setPrvsTtlNAV(ActiveOrHistoricCurrencyAndAmount value) {
this.prvsTtlNAV = value;
return this;
}
/**
* Gets the value of the ttlUnitsNb property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1 }
*
*/
public FinancialInstrumentQuantity1 getTtlUnitsNb() {
return ttlUnitsNb;
}
/**
* Sets the value of the ttlUnitsNb property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1 }
*
*/
public Fund4 setTtlUnitsNb(FinancialInstrumentQuantity1 value) {
this.ttlUnitsNb = value;
return this;
}
/**
* Gets the value of the prvsTtlUnitsNb property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1 }
*
*/
public FinancialInstrumentQuantity1 getPrvsTtlUnitsNb() {
return prvsTtlUnitsNb;
}
/**
* Sets the value of the prvsTtlUnitsNb property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1 }
*
*/
public Fund4 setPrvsTtlUnitsNb(FinancialInstrumentQuantity1 value) {
this.prvsTtlUnitsNb = value;
return this;
}
/**
* Gets the value of the pctgOfFndTtlNAV property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPctgOfFndTtlNAV() {
return pctgOfFndTtlNAV;
}
/**
* Sets the value of the pctgOfFndTtlNAV property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public Fund4 setPctgOfFndTtlNAV(BigDecimal value) {
this.pctgOfFndTtlNAV = 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