com.prowidesoftware.swift.model.mx.dic.DeliveringPartiesAndAccount1 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;
/**
* Chain of parties involved in the settlement of a transaction, including receipts and deliveries, book transfers, treasury deals, or other activities, resulting in the movement of a security or amount of money from one account to another.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DeliveringPartiesAndAccount1", propOrder = {
"dlvrrDtls",
"dlvrrsCtdnDtls",
"dlvrrsIntrmyDtls",
"dlvrgAgtDtls",
"sctiesSttlmSys",
"plcOfSttlmDtls"
})
public class DeliveringPartiesAndAccount1 {
@XmlElement(name = "DlvrrDtls", required = true)
protected InvestmentAccount11 dlvrrDtls;
@XmlElement(name = "DlvrrsCtdnDtls")
protected PartyIdentificationAndAccount2 dlvrrsCtdnDtls;
@XmlElement(name = "DlvrrsIntrmyDtls")
protected PartyIdentificationAndAccount2 dlvrrsIntrmyDtls;
@XmlElement(name = "DlvrgAgtDtls", required = true)
protected PartyIdentificationAndAccount2 dlvrgAgtDtls;
@XmlElement(name = "SctiesSttlmSys")
protected String sctiesSttlmSys;
@XmlElement(name = "PlcOfSttlmDtls", required = true)
protected PartyIdentificationAndAccount2 plcOfSttlmDtls;
/**
* Gets the value of the dlvrrDtls property.
*
* @return
* possible object is
* {@link InvestmentAccount11 }
*
*/
public InvestmentAccount11 getDlvrrDtls() {
return dlvrrDtls;
}
/**
* Sets the value of the dlvrrDtls property.
*
* @param value
* allowed object is
* {@link InvestmentAccount11 }
*
*/
public DeliveringPartiesAndAccount1 setDlvrrDtls(InvestmentAccount11 value) {
this.dlvrrDtls = value;
return this;
}
/**
* Gets the value of the dlvrrsCtdnDtls property.
*
* @return
* possible object is
* {@link PartyIdentificationAndAccount2 }
*
*/
public PartyIdentificationAndAccount2 getDlvrrsCtdnDtls() {
return dlvrrsCtdnDtls;
}
/**
* Sets the value of the dlvrrsCtdnDtls property.
*
* @param value
* allowed object is
* {@link PartyIdentificationAndAccount2 }
*
*/
public DeliveringPartiesAndAccount1 setDlvrrsCtdnDtls(PartyIdentificationAndAccount2 value) {
this.dlvrrsCtdnDtls = value;
return this;
}
/**
* Gets the value of the dlvrrsIntrmyDtls property.
*
* @return
* possible object is
* {@link PartyIdentificationAndAccount2 }
*
*/
public PartyIdentificationAndAccount2 getDlvrrsIntrmyDtls() {
return dlvrrsIntrmyDtls;
}
/**
* Sets the value of the dlvrrsIntrmyDtls property.
*
* @param value
* allowed object is
* {@link PartyIdentificationAndAccount2 }
*
*/
public DeliveringPartiesAndAccount1 setDlvrrsIntrmyDtls(PartyIdentificationAndAccount2 value) {
this.dlvrrsIntrmyDtls = value;
return this;
}
/**
* Gets the value of the dlvrgAgtDtls property.
*
* @return
* possible object is
* {@link PartyIdentificationAndAccount2 }
*
*/
public PartyIdentificationAndAccount2 getDlvrgAgtDtls() {
return dlvrgAgtDtls;
}
/**
* Sets the value of the dlvrgAgtDtls property.
*
* @param value
* allowed object is
* {@link PartyIdentificationAndAccount2 }
*
*/
public DeliveringPartiesAndAccount1 setDlvrgAgtDtls(PartyIdentificationAndAccount2 value) {
this.dlvrgAgtDtls = value;
return this;
}
/**
* Gets the value of the sctiesSttlmSys property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSctiesSttlmSys() {
return sctiesSttlmSys;
}
/**
* Sets the value of the sctiesSttlmSys property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public DeliveringPartiesAndAccount1 setSctiesSttlmSys(String value) {
this.sctiesSttlmSys = value;
return this;
}
/**
* Gets the value of the plcOfSttlmDtls property.
*
* @return
* possible object is
* {@link PartyIdentificationAndAccount2 }
*
*/
public PartyIdentificationAndAccount2 getPlcOfSttlmDtls() {
return plcOfSttlmDtls;
}
/**
* Sets the value of the plcOfSttlmDtls property.
*
* @param value
* allowed object is
* {@link PartyIdentificationAndAccount2 }
*
*/
public DeliveringPartiesAndAccount1 setPlcOfSttlmDtls(PartyIdentificationAndAccount2 value) {
this.plcOfSttlmDtls = 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