com.prowidesoftware.swift.model.mx.dic.Fund3 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
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;
/**
* Information about an investment fund.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Fund3", propOrder = {
"nm",
"lglNttyIdr",
"id",
"ccy",
"estmtdTtlNAV",
"prvsTtlNAV",
"estmtdTtlUnitsNb",
"prvsTtlUnitsNb",
"estmtdPctgOfFndTtlNAV"
})
public class Fund3 {
@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 = "EstmtdTtlNAV")
protected ActiveOrHistoricCurrencyAndAmount estmtdTtlNAV;
@XmlElement(name = "PrvsTtlNAV")
protected ActiveOrHistoricCurrencyAndAmount prvsTtlNAV;
@XmlElement(name = "EstmtdTtlUnitsNb")
protected FinancialInstrumentQuantity1 estmtdTtlUnitsNb;
@XmlElement(name = "PrvsTtlUnitsNb")
protected FinancialInstrumentQuantity1 prvsTtlUnitsNb;
@XmlElement(name = "EstmtdPctgOfFndTtlNAV")
protected BigDecimal estmtdPctgOfFndTtlNAV;
/**
* 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 Fund3 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 Fund3 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 Fund3 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 Fund3 setCcy(String value) {
this.ccy = value;
return this;
}
/**
* Gets the value of the estmtdTtlNAV property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getEstmtdTtlNAV() {
return estmtdTtlNAV;
}
/**
* Sets the value of the estmtdTtlNAV property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public Fund3 setEstmtdTtlNAV(ActiveOrHistoricCurrencyAndAmount value) {
this.estmtdTtlNAV = 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 Fund3 setPrvsTtlNAV(ActiveOrHistoricCurrencyAndAmount value) {
this.prvsTtlNAV = value;
return this;
}
/**
* Gets the value of the estmtdTtlUnitsNb property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1 }
*
*/
public FinancialInstrumentQuantity1 getEstmtdTtlUnitsNb() {
return estmtdTtlUnitsNb;
}
/**
* Sets the value of the estmtdTtlUnitsNb property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1 }
*
*/
public Fund3 setEstmtdTtlUnitsNb(FinancialInstrumentQuantity1 value) {
this.estmtdTtlUnitsNb = 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 Fund3 setPrvsTtlUnitsNb(FinancialInstrumentQuantity1 value) {
this.prvsTtlUnitsNb = value;
return this;
}
/**
* Gets the value of the estmtdPctgOfFndTtlNAV property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getEstmtdPctgOfFndTtlNAV() {
return estmtdPctgOfFndTtlNAV;
}
/**
* Sets the value of the estmtdPctgOfFndTtlNAV property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public Fund3 setEstmtdPctgOfFndTtlNAV(BigDecimal value) {
this.estmtdPctgOfFndTtlNAV = 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