com.prowidesoftware.swift.model.mx.dic.IntraPositionDetails7 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.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;
/**
* Details of the intra-position movement.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IntraPositionDetails7", propOrder = {
"prty",
"sttlmQty",
"sttlmDt",
"balFr",
"balTo",
"instrPrcgAddtlDtls"
})
public class IntraPositionDetails7 {
@XmlElement(name = "Prty")
protected PriorityNumeric2Choice prty;
@XmlElement(name = "SttlmQty", required = true)
protected FinancialInstrumentQuantity15Choice sttlmQty;
@XmlElement(name = "SttlmDt", required = true)
protected DateAndDateTimeChoice sttlmDt;
@XmlElement(name = "BalFr", required = true)
protected SecuritiesBalanceType4Choice balFr;
@XmlElement(name = "BalTo", required = true)
protected SecuritiesBalanceType4Choice balTo;
@XmlElement(name = "InstrPrcgAddtlDtls")
protected String instrPrcgAddtlDtls;
/**
* Gets the value of the prty property.
*
* @return
* possible object is
* {@link PriorityNumeric2Choice }
*
*/
public PriorityNumeric2Choice getPrty() {
return prty;
}
/**
* Sets the value of the prty property.
*
* @param value
* allowed object is
* {@link PriorityNumeric2Choice }
*
*/
public IntraPositionDetails7 setPrty(PriorityNumeric2Choice value) {
this.prty = value;
return this;
}
/**
* Gets the value of the sttlmQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public FinancialInstrumentQuantity15Choice getSttlmQty() {
return sttlmQty;
}
/**
* Sets the value of the sttlmQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public IntraPositionDetails7 setSttlmQty(FinancialInstrumentQuantity15Choice value) {
this.sttlmQty = value;
return this;
}
/**
* Gets the value of the sttlmDt property.
*
* @return
* possible object is
* {@link DateAndDateTimeChoice }
*
*/
public DateAndDateTimeChoice getSttlmDt() {
return sttlmDt;
}
/**
* Sets the value of the sttlmDt property.
*
* @param value
* allowed object is
* {@link DateAndDateTimeChoice }
*
*/
public IntraPositionDetails7 setSttlmDt(DateAndDateTimeChoice value) {
this.sttlmDt = value;
return this;
}
/**
* Gets the value of the balFr property.
*
* @return
* possible object is
* {@link SecuritiesBalanceType4Choice }
*
*/
public SecuritiesBalanceType4Choice getBalFr() {
return balFr;
}
/**
* Sets the value of the balFr property.
*
* @param value
* allowed object is
* {@link SecuritiesBalanceType4Choice }
*
*/
public IntraPositionDetails7 setBalFr(SecuritiesBalanceType4Choice value) {
this.balFr = value;
return this;
}
/**
* Gets the value of the balTo property.
*
* @return
* possible object is
* {@link SecuritiesBalanceType4Choice }
*
*/
public SecuritiesBalanceType4Choice getBalTo() {
return balTo;
}
/**
* Sets the value of the balTo property.
*
* @param value
* allowed object is
* {@link SecuritiesBalanceType4Choice }
*
*/
public IntraPositionDetails7 setBalTo(SecuritiesBalanceType4Choice value) {
this.balTo = value;
return this;
}
/**
* Gets the value of the instrPrcgAddtlDtls property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstrPrcgAddtlDtls() {
return instrPrcgAddtlDtls;
}
/**
* Sets the value of the instrPrcgAddtlDtls property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public IntraPositionDetails7 setInstrPrcgAddtlDtls(String value) {
this.instrPrcgAddtlDtls = 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