com.prowidesoftware.swift.model.mx.dic.SecuritiesOption58 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;
/**
* Provides information about the corporate action security option.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SecuritiesOption58", propOrder = {
"finInstrmId",
"cdtDbtInd",
"pstngQty",
"pstngDt",
"orgnlPstngDt"
})
public class SecuritiesOption58 {
@XmlElement(name = "FinInstrmId", required = true)
protected SecurityIdentification20 finInstrmId;
@XmlElement(name = "CdtDbtInd", required = true)
@XmlSchemaType(name = "string")
protected CreditDebitCode cdtDbtInd;
@XmlElement(name = "PstngQty", required = true)
protected Quantity10Choice pstngQty;
@XmlElement(name = "PstngDt", required = true)
protected DateAndDateTimeChoice pstngDt;
@XmlElement(name = "OrgnlPstngDt")
protected DateAndDateTimeChoice orgnlPstngDt;
/**
* Gets the value of the finInstrmId property.
*
* @return
* possible object is
* {@link SecurityIdentification20 }
*
*/
public SecurityIdentification20 getFinInstrmId() {
return finInstrmId;
}
/**
* Sets the value of the finInstrmId property.
*
* @param value
* allowed object is
* {@link SecurityIdentification20 }
*
*/
public SecuritiesOption58 setFinInstrmId(SecurityIdentification20 value) {
this.finInstrmId = value;
return this;
}
/**
* Gets the value of the cdtDbtInd property.
*
* @return
* possible object is
* {@link CreditDebitCode }
*
*/
public CreditDebitCode getCdtDbtInd() {
return cdtDbtInd;
}
/**
* Sets the value of the cdtDbtInd property.
*
* @param value
* allowed object is
* {@link CreditDebitCode }
*
*/
public SecuritiesOption58 setCdtDbtInd(CreditDebitCode value) {
this.cdtDbtInd = value;
return this;
}
/**
* Gets the value of the pstngQty property.
*
* @return
* possible object is
* {@link Quantity10Choice }
*
*/
public Quantity10Choice getPstngQty() {
return pstngQty;
}
/**
* Sets the value of the pstngQty property.
*
* @param value
* allowed object is
* {@link Quantity10Choice }
*
*/
public SecuritiesOption58 setPstngQty(Quantity10Choice value) {
this.pstngQty = value;
return this;
}
/**
* Gets the value of the pstngDt property.
*
* @return
* possible object is
* {@link DateAndDateTimeChoice }
*
*/
public DateAndDateTimeChoice getPstngDt() {
return pstngDt;
}
/**
* Sets the value of the pstngDt property.
*
* @param value
* allowed object is
* {@link DateAndDateTimeChoice }
*
*/
public SecuritiesOption58 setPstngDt(DateAndDateTimeChoice value) {
this.pstngDt = value;
return this;
}
/**
* Gets the value of the orgnlPstngDt property.
*
* @return
* possible object is
* {@link DateAndDateTimeChoice }
*
*/
public DateAndDateTimeChoice getOrgnlPstngDt() {
return orgnlPstngDt;
}
/**
* Sets the value of the orgnlPstngDt property.
*
* @param value
* allowed object is
* {@link DateAndDateTimeChoice }
*
*/
public SecuritiesOption58 setOrgnlPstngDt(DateAndDateTimeChoice value) {
this.orgnlPstngDt = 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