com.prowidesoftware.swift.model.mx.dic.SecurityInstrumentDescription1 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
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;
/**
* Identifies the security instrument by its name and typical characteristics.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SecurityInstrumentDescription1", propOrder = {
"desc",
"clssfctnTp",
"plcOfListg",
"exrcDt",
"mtrtyDt",
"optnTp",
"strkPric",
"mltplr"
})
public class SecurityInstrumentDescription1 {
@XmlElement(name = "Desc")
protected String desc;
@XmlElement(name = "ClssfctnTp")
protected String clssfctnTp;
@XmlElement(name = "PlcOfListg")
protected String plcOfListg;
@XmlElement(name = "ExrcDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar exrcDt;
@XmlElement(name = "MtrtyDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "OptnTp")
@XmlSchemaType(name = "string")
protected OptionType1Code optnTp;
@XmlElement(name = "StrkPric")
protected PriceRateOrAmountChoice strkPric;
@XmlElement(name = "Mltplr")
protected BigDecimal mltplr;
/**
* Gets the value of the desc property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDesc() {
return desc;
}
/**
* Sets the value of the desc property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SecurityInstrumentDescription1 setDesc(String value) {
this.desc = value;
return this;
}
/**
* Gets the value of the clssfctnTp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClssfctnTp() {
return clssfctnTp;
}
/**
* Sets the value of the clssfctnTp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SecurityInstrumentDescription1 setClssfctnTp(String value) {
this.clssfctnTp = value;
return this;
}
/**
* Gets the value of the plcOfListg property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPlcOfListg() {
return plcOfListg;
}
/**
* Sets the value of the plcOfListg property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SecurityInstrumentDescription1 setPlcOfListg(String value) {
this.plcOfListg = value;
return this;
}
/**
* Gets the value of the exrcDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getExrcDt() {
return exrcDt;
}
/**
* Sets the value of the exrcDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public SecurityInstrumentDescription1 setExrcDt(XMLGregorianCalendar value) {
this.exrcDt = value;
return this;
}
/**
* Gets the value of the mtrtyDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
return mtrtyDt;
}
/**
* Sets the value of the mtrtyDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public SecurityInstrumentDescription1 setMtrtyDt(XMLGregorianCalendar value) {
this.mtrtyDt = value;
return this;
}
/**
* Gets the value of the optnTp property.
*
* @return
* possible object is
* {@link OptionType1Code }
*
*/
public OptionType1Code getOptnTp() {
return optnTp;
}
/**
* Sets the value of the optnTp property.
*
* @param value
* allowed object is
* {@link OptionType1Code }
*
*/
public SecurityInstrumentDescription1 setOptnTp(OptionType1Code value) {
this.optnTp = value;
return this;
}
/**
* Gets the value of the strkPric property.
*
* @return
* possible object is
* {@link PriceRateOrAmountChoice }
*
*/
public PriceRateOrAmountChoice getStrkPric() {
return strkPric;
}
/**
* Sets the value of the strkPric property.
*
* @param value
* allowed object is
* {@link PriceRateOrAmountChoice }
*
*/
public SecurityInstrumentDescription1 setStrkPric(PriceRateOrAmountChoice value) {
this.strkPric = value;
return this;
}
/**
* Gets the value of the mltplr property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMltplr() {
return mltplr;
}
/**
* Sets the value of the mltplr property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public SecurityInstrumentDescription1 setMltplr(BigDecimal value) {
this.mltplr = 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