com.prowidesoftware.swift.model.mx.dic.SettlementParties79 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 = "SettlementParties79", propOrder = {
"pty2",
"pty3",
"pty4",
"pty5"
})
public class SettlementParties79 {
@XmlElement(name = "Pty2")
protected PartyIdentificationAndAccount168 pty2;
@XmlElement(name = "Pty3")
protected PartyIdentificationAndAccount168 pty3;
@XmlElement(name = "Pty4")
protected PartyIdentificationAndAccount168 pty4;
@XmlElement(name = "Pty5")
protected PartyIdentificationAndAccount168 pty5;
/**
* Gets the value of the pty2 property.
*
* @return
* possible object is
* {@link PartyIdentificationAndAccount168 }
*
*/
public PartyIdentificationAndAccount168 getPty2() {
return pty2;
}
/**
* Sets the value of the pty2 property.
*
* @param value
* allowed object is
* {@link PartyIdentificationAndAccount168 }
*
*/
public SettlementParties79 setPty2(PartyIdentificationAndAccount168 value) {
this.pty2 = value;
return this;
}
/**
* Gets the value of the pty3 property.
*
* @return
* possible object is
* {@link PartyIdentificationAndAccount168 }
*
*/
public PartyIdentificationAndAccount168 getPty3() {
return pty3;
}
/**
* Sets the value of the pty3 property.
*
* @param value
* allowed object is
* {@link PartyIdentificationAndAccount168 }
*
*/
public SettlementParties79 setPty3(PartyIdentificationAndAccount168 value) {
this.pty3 = value;
return this;
}
/**
* Gets the value of the pty4 property.
*
* @return
* possible object is
* {@link PartyIdentificationAndAccount168 }
*
*/
public PartyIdentificationAndAccount168 getPty4() {
return pty4;
}
/**
* Sets the value of the pty4 property.
*
* @param value
* allowed object is
* {@link PartyIdentificationAndAccount168 }
*
*/
public SettlementParties79 setPty4(PartyIdentificationAndAccount168 value) {
this.pty4 = value;
return this;
}
/**
* Gets the value of the pty5 property.
*
* @return
* possible object is
* {@link PartyIdentificationAndAccount168 }
*
*/
public PartyIdentificationAndAccount168 getPty5() {
return pty5;
}
/**
* Sets the value of the pty5 property.
*
* @param value
* allowed object is
* {@link PartyIdentificationAndAccount168 }
*
*/
public SettlementParties79 setPty5(PartyIdentificationAndAccount168 value) {
this.pty5 = 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