com.prowidesoftware.swift.model.mx.dic.OptionTransactionDetailsSD1 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 java.time.OffsetDateTime;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
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 jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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 additional information regarding corporate action movement option details.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OptionTransactionDetailsSD1", propOrder = {
"plcAndNm",
"txId",
"txSeqNb",
"txIdDt",
"txIdQty",
"entitldAmt",
"entitldQty",
"agtNtrdQty",
"agtRmngQty",
"cstmrRefId"
})
public class OptionTransactionDetailsSD1 {
@XmlElement(name = "PlcAndNm", required = true)
protected String plcAndNm;
@XmlElement(name = "TxId", required = true)
protected String txId;
@XmlElement(name = "TxSeqNb")
protected String txSeqNb;
@XmlElement(name = "TxIdDt", required = true, type = String.class)
@XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected OffsetDateTime txIdDt;
@XmlElement(name = "TxIdQty", required = true)
protected FinancialInstrumentQuantity15Choice txIdQty;
@XmlElement(name = "EntitldAmt")
protected RestrictedFINActiveCurrencyAndAmount entitldAmt;
@XmlElement(name = "EntitldQty")
protected FinancialInstrumentQuantity15Choice entitldQty;
@XmlElement(name = "AgtNtrdQty")
protected FinancialInstrumentQuantity15Choice agtNtrdQty;
@XmlElement(name = "AgtRmngQty")
protected FinancialInstrumentQuantity15Choice agtRmngQty;
@XmlElement(name = "CstmrRefId")
protected String cstmrRefId;
/**
* Gets the value of the plcAndNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPlcAndNm() {
return plcAndNm;
}
/**
* Sets the value of the plcAndNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public OptionTransactionDetailsSD1 setPlcAndNm(String value) {
this.plcAndNm = value;
return this;
}
/**
* Gets the value of the txId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTxId() {
return txId;
}
/**
* Sets the value of the txId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public OptionTransactionDetailsSD1 setTxId(String value) {
this.txId = value;
return this;
}
/**
* Gets the value of the txSeqNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTxSeqNb() {
return txSeqNb;
}
/**
* Sets the value of the txSeqNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public OptionTransactionDetailsSD1 setTxSeqNb(String value) {
this.txSeqNb = value;
return this;
}
/**
* Gets the value of the txIdDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public OffsetDateTime getTxIdDt() {
return txIdDt;
}
/**
* Sets the value of the txIdDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public OptionTransactionDetailsSD1 setTxIdDt(OffsetDateTime value) {
this.txIdDt = value;
return this;
}
/**
* Gets the value of the txIdQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public FinancialInstrumentQuantity15Choice getTxIdQty() {
return txIdQty;
}
/**
* Sets the value of the txIdQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public OptionTransactionDetailsSD1 setTxIdQty(FinancialInstrumentQuantity15Choice value) {
this.txIdQty = value;
return this;
}
/**
* Gets the value of the entitldAmt property.
*
* @return
* possible object is
* {@link RestrictedFINActiveCurrencyAndAmount }
*
*/
public RestrictedFINActiveCurrencyAndAmount getEntitldAmt() {
return entitldAmt;
}
/**
* Sets the value of the entitldAmt property.
*
* @param value
* allowed object is
* {@link RestrictedFINActiveCurrencyAndAmount }
*
*/
public OptionTransactionDetailsSD1 setEntitldAmt(RestrictedFINActiveCurrencyAndAmount value) {
this.entitldAmt = value;
return this;
}
/**
* Gets the value of the entitldQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public FinancialInstrumentQuantity15Choice getEntitldQty() {
return entitldQty;
}
/**
* Sets the value of the entitldQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public OptionTransactionDetailsSD1 setEntitldQty(FinancialInstrumentQuantity15Choice value) {
this.entitldQty = value;
return this;
}
/**
* Gets the value of the agtNtrdQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public FinancialInstrumentQuantity15Choice getAgtNtrdQty() {
return agtNtrdQty;
}
/**
* Sets the value of the agtNtrdQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public OptionTransactionDetailsSD1 setAgtNtrdQty(FinancialInstrumentQuantity15Choice value) {
this.agtNtrdQty = value;
return this;
}
/**
* Gets the value of the agtRmngQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public FinancialInstrumentQuantity15Choice getAgtRmngQty() {
return agtRmngQty;
}
/**
* Sets the value of the agtRmngQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public OptionTransactionDetailsSD1 setAgtRmngQty(FinancialInstrumentQuantity15Choice value) {
this.agtRmngQty = value;
return this;
}
/**
* Gets the value of the cstmrRefId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCstmrRefId() {
return cstmrRefId;
}
/**
* Sets the value of the cstmrRefId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public OptionTransactionDetailsSD1 setCstmrRefId(String value) {
this.cstmrRefId = 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