com.prowidesoftware.swift.model.mx.dic.QuantityAndAccount97 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 on a quantity, account and other related information.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "QuantityAndAccount97", propOrder = {
"sttldQty",
"prevslySttldQty",
"rmngToBeSttldQty",
"prevslySttldAmt",
"rmngToBeSttldAmt",
"acctOwnr",
"sfkpgAcct",
"blckChainAdrOrWllt",
"cshAcct",
"sfkpgPlc"
})
public class QuantityAndAccount97 {
@XmlElement(name = "SttldQty", required = true)
protected Quantity51Choice sttldQty;
@XmlElement(name = "PrevslySttldQty")
protected FinancialInstrumentQuantity33Choice prevslySttldQty;
@XmlElement(name = "RmngToBeSttldQty")
protected FinancialInstrumentQuantity33Choice rmngToBeSttldQty;
@XmlElement(name = "PrevslySttldAmt")
protected AmountAndDirection5 prevslySttldAmt;
@XmlElement(name = "RmngToBeSttldAmt")
protected AmountAndDirection5 rmngToBeSttldAmt;
@XmlElement(name = "AcctOwnr")
protected PartyIdentification144 acctOwnr;
@XmlElement(name = "SfkpgAcct")
protected SecuritiesAccount19 sfkpgAcct;
@XmlElement(name = "BlckChainAdrOrWllt")
protected BlockChainAddressWallet3 blckChainAdrOrWllt;
@XmlElement(name = "CshAcct")
protected CashAccountIdentification5Choice cshAcct;
@XmlElement(name = "SfkpgPlc")
protected SafeKeepingPlace3 sfkpgPlc;
/**
* Gets the value of the sttldQty property.
*
* @return
* possible object is
* {@link Quantity51Choice }
*
*/
public Quantity51Choice getSttldQty() {
return sttldQty;
}
/**
* Sets the value of the sttldQty property.
*
* @param value
* allowed object is
* {@link Quantity51Choice }
*
*/
public QuantityAndAccount97 setSttldQty(Quantity51Choice value) {
this.sttldQty = value;
return this;
}
/**
* Gets the value of the prevslySttldQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity33Choice }
*
*/
public FinancialInstrumentQuantity33Choice getPrevslySttldQty() {
return prevslySttldQty;
}
/**
* Sets the value of the prevslySttldQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity33Choice }
*
*/
public QuantityAndAccount97 setPrevslySttldQty(FinancialInstrumentQuantity33Choice value) {
this.prevslySttldQty = value;
return this;
}
/**
* Gets the value of the rmngToBeSttldQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity33Choice }
*
*/
public FinancialInstrumentQuantity33Choice getRmngToBeSttldQty() {
return rmngToBeSttldQty;
}
/**
* Sets the value of the rmngToBeSttldQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity33Choice }
*
*/
public QuantityAndAccount97 setRmngToBeSttldQty(FinancialInstrumentQuantity33Choice value) {
this.rmngToBeSttldQty = value;
return this;
}
/**
* Gets the value of the prevslySttldAmt property.
*
* @return
* possible object is
* {@link AmountAndDirection5 }
*
*/
public AmountAndDirection5 getPrevslySttldAmt() {
return prevslySttldAmt;
}
/**
* Sets the value of the prevslySttldAmt property.
*
* @param value
* allowed object is
* {@link AmountAndDirection5 }
*
*/
public QuantityAndAccount97 setPrevslySttldAmt(AmountAndDirection5 value) {
this.prevslySttldAmt = value;
return this;
}
/**
* Gets the value of the rmngToBeSttldAmt property.
*
* @return
* possible object is
* {@link AmountAndDirection5 }
*
*/
public AmountAndDirection5 getRmngToBeSttldAmt() {
return rmngToBeSttldAmt;
}
/**
* Sets the value of the rmngToBeSttldAmt property.
*
* @param value
* allowed object is
* {@link AmountAndDirection5 }
*
*/
public QuantityAndAccount97 setRmngToBeSttldAmt(AmountAndDirection5 value) {
this.rmngToBeSttldAmt = value;
return this;
}
/**
* Gets the value of the acctOwnr property.
*
* @return
* possible object is
* {@link PartyIdentification144 }
*
*/
public PartyIdentification144 getAcctOwnr() {
return acctOwnr;
}
/**
* Sets the value of the acctOwnr property.
*
* @param value
* allowed object is
* {@link PartyIdentification144 }
*
*/
public QuantityAndAccount97 setAcctOwnr(PartyIdentification144 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 QuantityAndAccount97 setSfkpgAcct(SecuritiesAccount19 value) {
this.sfkpgAcct = value;
return this;
}
/**
* Gets the value of the blckChainAdrOrWllt property.
*
* @return
* possible object is
* {@link BlockChainAddressWallet3 }
*
*/
public BlockChainAddressWallet3 getBlckChainAdrOrWllt() {
return blckChainAdrOrWllt;
}
/**
* Sets the value of the blckChainAdrOrWllt property.
*
* @param value
* allowed object is
* {@link BlockChainAddressWallet3 }
*
*/
public QuantityAndAccount97 setBlckChainAdrOrWllt(BlockChainAddressWallet3 value) {
this.blckChainAdrOrWllt = value;
return this;
}
/**
* Gets the value of the cshAcct property.
*
* @return
* possible object is
* {@link CashAccountIdentification5Choice }
*
*/
public CashAccountIdentification5Choice getCshAcct() {
return cshAcct;
}
/**
* Sets the value of the cshAcct property.
*
* @param value
* allowed object is
* {@link CashAccountIdentification5Choice }
*
*/
public QuantityAndAccount97 setCshAcct(CashAccountIdentification5Choice value) {
this.cshAcct = value;
return this;
}
/**
* Gets the value of the sfkpgPlc property.
*
* @return
* possible object is
* {@link SafeKeepingPlace3 }
*
*/
public SafeKeepingPlace3 getSfkpgPlc() {
return sfkpgPlc;
}
/**
* Sets the value of the sfkpgPlc property.
*
* @param value
* allowed object is
* {@link SafeKeepingPlace3 }
*
*/
public QuantityAndAccount97 setSfkpgPlc(SafeKeepingPlace3 value) {
this.sfkpgPlc = 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