com.prowidesoftware.swift.model.mx.dic.FinancialInstrument76 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
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;
/**
* Identifying features of a financial instrument that is a sub-set of an investment fund.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FinancialInstrument76", propOrder = {
"splmtryId",
"sctiesForm",
"clssTp",
"dstrbtnPlcy",
"clssfctnTp"
})
public class FinancialInstrument76 {
@XmlElement(name = "SplmtryId")
protected String splmtryId;
@XmlElement(name = "SctiesForm")
@XmlSchemaType(name = "string")
protected FormOfSecurity1Code sctiesForm;
@XmlElement(name = "ClssTp")
protected String clssTp;
@XmlElement(name = "DstrbtnPlcy")
@XmlSchemaType(name = "string")
protected DistributionPolicy1Code dstrbtnPlcy;
@XmlElement(name = "ClssfctnTp")
protected SecurityClassificationType3Choice clssfctnTp;
/**
* 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 FinancialInstrument76 setSplmtryId(String value) {
this.splmtryId = 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 FinancialInstrument76 setSctiesForm(FormOfSecurity1Code value) {
this.sctiesForm = 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 FinancialInstrument76 setClssTp(String value) {
this.clssTp = 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 FinancialInstrument76 setDstrbtnPlcy(DistributionPolicy1Code value) {
this.dstrbtnPlcy = value;
return this;
}
/**
* Gets the value of the clssfctnTp property.
*
* @return
* possible object is
* {@link SecurityClassificationType3Choice }
*
*/
public SecurityClassificationType3Choice getClssfctnTp() {
return clssfctnTp;
}
/**
* Sets the value of the clssfctnTp property.
*
* @param value
* allowed object is
* {@link SecurityClassificationType3Choice }
*
*/
public FinancialInstrument76 setClssfctnTp(SecurityClassificationType3Choice value) {
this.clssfctnTp = 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