com.prowidesoftware.swift.model.mx.dic.IntraPositionDetails9 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 = "IntraPositionDetails9", propOrder = {
"poolId",
"acctOwnr",
"sfkpgAcct",
"finInstrmId",
"sttldQty",
"sttlmDt",
"balFr",
"balTo"
})
public class IntraPositionDetails9 {
@XmlElement(name = "PoolId")
protected String poolId;
@XmlElement(name = "AcctOwnr")
protected PartyIdentification36Choice acctOwnr;
@XmlElement(name = "SfkpgAcct", required = true)
protected SecuritiesAccount13 sfkpgAcct;
@XmlElement(name = "FinInstrmId", required = true)
protected SecurityIdentification14 finInstrmId;
@XmlElement(name = "SttldQty", required = true)
protected FinancialInstrumentQuantity1Choice sttldQty;
@XmlElement(name = "SttlmDt", required = true)
protected DateAndDateTimeChoice sttlmDt;
@XmlElement(name = "BalFr")
protected SecuritiesBalanceType2Choice balFr;
@XmlElement(name = "BalTo")
protected SecuritiesBalanceType2Choice balTo;
/**
* Gets the value of the poolId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPoolId() {
return poolId;
}
/**
* Sets the value of the poolId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public IntraPositionDetails9 setPoolId(String value) {
this.poolId = value;
return this;
}
/**
* Gets the value of the acctOwnr property.
*
* @return
* possible object is
* {@link PartyIdentification36Choice }
*
*/
public PartyIdentification36Choice getAcctOwnr() {
return acctOwnr;
}
/**
* Sets the value of the acctOwnr property.
*
* @param value
* allowed object is
* {@link PartyIdentification36Choice }
*
*/
public IntraPositionDetails9 setAcctOwnr(PartyIdentification36Choice value) {
this.acctOwnr = value;
return this;
}
/**
* Gets the value of the sfkpgAcct property.
*
* @return
* possible object is
* {@link SecuritiesAccount13 }
*
*/
public SecuritiesAccount13 getSfkpgAcct() {
return sfkpgAcct;
}
/**
* Sets the value of the sfkpgAcct property.
*
* @param value
* allowed object is
* {@link SecuritiesAccount13 }
*
*/
public IntraPositionDetails9 setSfkpgAcct(SecuritiesAccount13 value) {
this.sfkpgAcct = value;
return this;
}
/**
* Gets the value of the finInstrmId property.
*
* @return
* possible object is
* {@link SecurityIdentification14 }
*
*/
public SecurityIdentification14 getFinInstrmId() {
return finInstrmId;
}
/**
* Sets the value of the finInstrmId property.
*
* @param value
* allowed object is
* {@link SecurityIdentification14 }
*
*/
public IntraPositionDetails9 setFinInstrmId(SecurityIdentification14 value) {
this.finInstrmId = value;
return this;
}
/**
* Gets the value of the sttldQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public FinancialInstrumentQuantity1Choice getSttldQty() {
return sttldQty;
}
/**
* Sets the value of the sttldQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public IntraPositionDetails9 setSttldQty(FinancialInstrumentQuantity1Choice value) {
this.sttldQty = 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 IntraPositionDetails9 setSttlmDt(DateAndDateTimeChoice value) {
this.sttlmDt = value;
return this;
}
/**
* Gets the value of the balFr property.
*
* @return
* possible object is
* {@link SecuritiesBalanceType2Choice }
*
*/
public SecuritiesBalanceType2Choice getBalFr() {
return balFr;
}
/**
* Sets the value of the balFr property.
*
* @param value
* allowed object is
* {@link SecuritiesBalanceType2Choice }
*
*/
public IntraPositionDetails9 setBalFr(SecuritiesBalanceType2Choice value) {
this.balFr = value;
return this;
}
/**
* Gets the value of the balTo property.
*
* @return
* possible object is
* {@link SecuritiesBalanceType2Choice }
*
*/
public SecuritiesBalanceType2Choice getBalTo() {
return balTo;
}
/**
* Sets the value of the balTo property.
*
* @param value
* allowed object is
* {@link SecuritiesBalanceType2Choice }
*
*/
public IntraPositionDetails9 setBalTo(SecuritiesBalanceType2Choice value) {
this.balTo = 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