com.prowidesoftware.swift.model.mx.dic.FinancialInstrument49 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, for example, dividend option or valuation currency.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FinancialInstrument49", propOrder = {
"id",
"nm",
"shrtNm",
"splmtryId",
"clssTp",
"sctiesForm",
"dstrbtnPlcy"
})
public class FinancialInstrument49 {
@XmlElement(name = "Id", required = true)
protected SecurityIdentification23Choice id;
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "ShrtNm")
protected String shrtNm;
@XmlElement(name = "SplmtryId")
protected String splmtryId;
@XmlElement(name = "ClssTp")
protected String clssTp;
@XmlElement(name = "SctiesForm")
@XmlSchemaType(name = "string")
protected FormOfSecurity1Code sctiesForm;
@XmlElement(name = "DstrbtnPlcy")
@XmlSchemaType(name = "string")
protected DistributionPolicy1Code dstrbtnPlcy;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link SecurityIdentification23Choice }
*
*/
public SecurityIdentification23Choice getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link SecurityIdentification23Choice }
*
*/
public FinancialInstrument49 setId(SecurityIdentification23Choice 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 FinancialInstrument49 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the shrtNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShrtNm() {
return shrtNm;
}
/**
* Sets the value of the shrtNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public FinancialInstrument49 setShrtNm(String value) {
this.shrtNm = value;
return this;
}
/**
* Gets the value of the splmtryId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSplmtryId() {
return splmtryId;
}
/**
* Sets the value of the splmtryId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public FinancialInstrument49 setSplmtryId(String value) {
this.splmtryId = value;
return this;
}
/**
* Gets the value of the clssTp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClssTp() {
return clssTp;
}
/**
* Sets the value of the clssTp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public FinancialInstrument49 setClssTp(String value) {
this.clssTp = value;
return this;
}
/**
* Gets the value of the sctiesForm property.
*
* @return
* possible object is
* {@link FormOfSecurity1Code }
*
*/
public FormOfSecurity1Code getSctiesForm() {
return sctiesForm;
}
/**
* Sets the value of the sctiesForm property.
*
* @param value
* allowed object is
* {@link FormOfSecurity1Code }
*
*/
public FinancialInstrument49 setSctiesForm(FormOfSecurity1Code value) {
this.sctiesForm = value;
return this;
}
/**
* Gets the value of the dstrbtnPlcy property.
*
* @return
* possible object is
* {@link DistributionPolicy1Code }
*
*/
public DistributionPolicy1Code getDstrbtnPlcy() {
return dstrbtnPlcy;
}
/**
* Sets the value of the dstrbtnPlcy property.
*
* @param value
* allowed object is
* {@link DistributionPolicy1Code }
*
*/
public FinancialInstrument49 setDstrbtnPlcy(DistributionPolicy1Code value) {
this.dstrbtnPlcy = 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