com.prowidesoftware.swift.model.mx.dic.SecuritiesOption76 Maven / Gradle / Ivy
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;
/**
* Provides information about the corporate action security option.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SecuritiesOption76", propOrder = {
"finInstrmId",
"cdtDbtInd",
"entitldQty",
"pmtDt"
})
public class SecuritiesOption76 {
@XmlElement(name = "FinInstrmId", required = true)
protected SecurityIdentification19 finInstrmId;
@XmlElement(name = "CdtDbtInd", required = true)
@XmlSchemaType(name = "string")
protected CreditDebitCode cdtDbtInd;
@XmlElement(name = "EntitldQty", required = true)
protected Quantity6Choice entitldQty;
@XmlElement(name = "PmtDt", required = true)
protected DateFormat58Choice pmtDt;
/**
* Gets the value of the finInstrmId property.
*
* @return
* possible object is
* {@link SecurityIdentification19 }
*
*/
public SecurityIdentification19 getFinInstrmId() {
return finInstrmId;
}
/**
* Sets the value of the finInstrmId property.
*
* @param value
* allowed object is
* {@link SecurityIdentification19 }
*
*/
public SecuritiesOption76 setFinInstrmId(SecurityIdentification19 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 SecuritiesOption76 setCdtDbtInd(CreditDebitCode value) {
this.cdtDbtInd = value;
return this;
}
/**
* Gets the value of the entitldQty property.
*
* @return
* possible object is
* {@link Quantity6Choice }
*
*/
public Quantity6Choice getEntitldQty() {
return entitldQty;
}
/**
* Sets the value of the entitldQty property.
*
* @param value
* allowed object is
* {@link Quantity6Choice }
*
*/
public SecuritiesOption76 setEntitldQty(Quantity6Choice value) {
this.entitldQty = value;
return this;
}
/**
* Gets the value of the pmtDt property.
*
* @return
* possible object is
* {@link DateFormat58Choice }
*
*/
public DateFormat58Choice getPmtDt() {
return pmtDt;
}
/**
* Sets the value of the pmtDt property.
*
* @param value
* allowed object is
* {@link DateFormat58Choice }
*
*/
public SecuritiesOption76 setPmtDt(DateFormat58Choice value) {
this.pmtDt = 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