com.prowidesoftware.swift.model.mx.dic.PartyIdentificationAndAccount126 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;
/**
* Party involved in the settlement chain.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PartyIdentificationAndAccount126", propOrder = {
"ptyId",
"acctId",
"prcgId",
"prcgDt",
"subAcct",
"ctctPrsn"
})
public class PartyIdentificationAndAccount126 {
@XmlElement(name = "PtyId", required = true)
protected PartyIdentification100Choice ptyId;
@XmlElement(name = "AcctId")
protected String acctId;
@XmlElement(name = "PrcgId")
protected String prcgId;
@XmlElement(name = "PrcgDt")
protected DateAndDateTimeChoice prcgDt;
@XmlElement(name = "SubAcct")
protected SubAccount5 subAcct;
@XmlElement(name = "CtctPrsn")
protected ContactIdentification2 ctctPrsn;
/**
* Gets the value of the ptyId property.
*
* @return
* possible object is
* {@link PartyIdentification100Choice }
*
*/
public PartyIdentification100Choice getPtyId() {
return ptyId;
}
/**
* Sets the value of the ptyId property.
*
* @param value
* allowed object is
* {@link PartyIdentification100Choice }
*
*/
public PartyIdentificationAndAccount126 setPtyId(PartyIdentification100Choice value) {
this.ptyId = value;
return this;
}
/**
* Gets the value of the acctId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAcctId() {
return acctId;
}
/**
* Sets the value of the acctId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PartyIdentificationAndAccount126 setAcctId(String value) {
this.acctId = value;
return this;
}
/**
* Gets the value of the prcgId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrcgId() {
return prcgId;
}
/**
* Sets the value of the prcgId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PartyIdentificationAndAccount126 setPrcgId(String value) {
this.prcgId = value;
return this;
}
/**
* Gets the value of the prcgDt property.
*
* @return
* possible object is
* {@link DateAndDateTimeChoice }
*
*/
public DateAndDateTimeChoice getPrcgDt() {
return prcgDt;
}
/**
* Sets the value of the prcgDt property.
*
* @param value
* allowed object is
* {@link DateAndDateTimeChoice }
*
*/
public PartyIdentificationAndAccount126 setPrcgDt(DateAndDateTimeChoice value) {
this.prcgDt = value;
return this;
}
/**
* Gets the value of the subAcct property.
*
* @return
* possible object is
* {@link SubAccount5 }
*
*/
public SubAccount5 getSubAcct() {
return subAcct;
}
/**
* Sets the value of the subAcct property.
*
* @param value
* allowed object is
* {@link SubAccount5 }
*
*/
public PartyIdentificationAndAccount126 setSubAcct(SubAccount5 value) {
this.subAcct = value;
return this;
}
/**
* Gets the value of the ctctPrsn property.
*
* @return
* possible object is
* {@link ContactIdentification2 }
*
*/
public ContactIdentification2 getCtctPrsn() {
return ctctPrsn;
}
/**
* Sets the value of the ctctPrsn property.
*
* @param value
* allowed object is
* {@link ContactIdentification2 }
*
*/
public PartyIdentificationAndAccount126 setCtctPrsn(ContactIdentification2 value) {
this.ctctPrsn = 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