com.prowidesoftware.swift.model.mx.dic.IntraPositionDetails31 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
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;
/**
* Details of the intra-position movement.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IntraPositionDetails31", propOrder = {
"poolId",
"acctOwnr",
"sfkpgAcct",
"finInstrmId",
"sttlmQty",
"lotNb",
"sttlmDt",
"balFr",
"balTo"
})
public class IntraPositionDetails31 {
@XmlElement(name = "PoolId")
protected String poolId;
@XmlElement(name = "AcctOwnr")
protected PartyIdentification92Choice acctOwnr;
@XmlElement(name = "SfkpgAcct", required = true)
protected SecuritiesAccount19 sfkpgAcct;
@XmlElement(name = "FinInstrmId", required = true)
protected SecurityIdentification19 finInstrmId;
@XmlElement(name = "SttlmQty", required = true)
protected FinancialInstrumentQuantity1Choice sttlmQty;
@XmlElement(name = "LotNb")
protected GenericIdentification37 lotNb;
@XmlElement(name = "SttlmDt", required = true)
protected DateAndDateTimeChoice sttlmDt;
@XmlElement(name = "BalFr")
protected SecuritiesBalanceType7Choice balFr;
@XmlElement(name = "BalTo")
protected SecuritiesBalanceType7Choice 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 IntraPositionDetails31 setPoolId(String value) {
this.poolId = value;
return this;
}
/**
* Gets the value of the acctOwnr property.
*
* @return
* possible object is
* {@link PartyIdentification92Choice }
*
*/
public PartyIdentification92Choice getAcctOwnr() {
return acctOwnr;
}
/**
* Sets the value of the acctOwnr property.
*
* @param value
* allowed object is
* {@link PartyIdentification92Choice }
*
*/
public IntraPositionDetails31 setAcctOwnr(PartyIdentification92Choice value) {
this.acctOwnr = value;
return this;
}
/**
* Gets the value of the sfkpgAcct property.
*
* @return
* possible object is
* {@link SecuritiesAccount19 }
*
*/
public SecuritiesAccount19 getSfkpgAcct() {
return sfkpgAcct;
}
/**
* Sets the value of the sfkpgAcct property.
*
* @param value
* allowed object is
* {@link SecuritiesAccount19 }
*
*/
public IntraPositionDetails31 setSfkpgAcct(SecuritiesAccount19 value) {
this.sfkpgAcct = value;
return this;
}
/**
* 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 IntraPositionDetails31 setFinInstrmId(SecurityIdentification19 value) {
this.finInstrmId = value;
return this;
}
/**
* Gets the value of the sttlmQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public FinancialInstrumentQuantity1Choice getSttlmQty() {
return sttlmQty;
}
/**
* Sets the value of the sttlmQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public IntraPositionDetails31 setSttlmQty(FinancialInstrumentQuantity1Choice value) {
this.sttlmQty = value;
return this;
}
/**
* Gets the value of the lotNb property.
*
* @return
* possible object is
* {@link GenericIdentification37 }
*
*/
public GenericIdentification37 getLotNb() {
return lotNb;
}
/**
* Sets the value of the lotNb property.
*
* @param value
* allowed object is
* {@link GenericIdentification37 }
*
*/
public IntraPositionDetails31 setLotNb(GenericIdentification37 value) {
this.lotNb = 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 IntraPositionDetails31 setSttlmDt(DateAndDateTimeChoice value) {
this.sttlmDt = value;
return this;
}
/**
* Gets the value of the balFr property.
*
* @return
* possible object is
* {@link SecuritiesBalanceType7Choice }
*
*/
public SecuritiesBalanceType7Choice getBalFr() {
return balFr;
}
/**
* Sets the value of the balFr property.
*
* @param value
* allowed object is
* {@link SecuritiesBalanceType7Choice }
*
*/
public IntraPositionDetails31 setBalFr(SecuritiesBalanceType7Choice value) {
this.balFr = value;
return this;
}
/**
* Gets the value of the balTo property.
*
* @return
* possible object is
* {@link SecuritiesBalanceType7Choice }
*
*/
public SecuritiesBalanceType7Choice getBalTo() {
return balTo;
}
/**
* Sets the value of the balTo property.
*
* @param value
* allowed object is
* {@link SecuritiesBalanceType7Choice }
*
*/
public IntraPositionDetails31 setBalTo(SecuritiesBalanceType7Choice 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