com.prowidesoftware.swift.model.mx.dic.Account34 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;
/**
* Business relationship between two entities; one entity is the account owner, the other entity is the account servicer.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Account34", propOrder = {
"acctId",
"acctDsgnt",
"acctNm",
"acctSvcr",
"regnAdr"
})
public class Account34 {
@XmlElement(name = "AcctId")
protected String acctId;
@XmlElement(name = "AcctDsgnt")
protected String acctDsgnt;
@XmlElement(name = "AcctNm")
protected String acctNm;
@XmlElement(name = "AcctSvcr", required = true)
protected PartyIdentification132 acctSvcr;
@XmlElement(name = "RegnAdr")
protected PostalAddress1 regnAdr;
/**
* 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 Account34 setAcctId(String value) {
this.acctId = value;
return this;
}
/**
* Gets the value of the acctDsgnt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAcctDsgnt() {
return acctDsgnt;
}
/**
* Sets the value of the acctDsgnt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Account34 setAcctDsgnt(String value) {
this.acctDsgnt = value;
return this;
}
/**
* Gets the value of the acctNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAcctNm() {
return acctNm;
}
/**
* Sets the value of the acctNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Account34 setAcctNm(String value) {
this.acctNm = value;
return this;
}
/**
* Gets the value of the acctSvcr property.
*
* @return
* possible object is
* {@link PartyIdentification132 }
*
*/
public PartyIdentification132 getAcctSvcr() {
return acctSvcr;
}
/**
* Sets the value of the acctSvcr property.
*
* @param value
* allowed object is
* {@link PartyIdentification132 }
*
*/
public Account34 setAcctSvcr(PartyIdentification132 value) {
this.acctSvcr = value;
return this;
}
/**
* Gets the value of the regnAdr property.
*
* @return
* possible object is
* {@link PostalAddress1 }
*
*/
public PostalAddress1 getRegnAdr() {
return regnAdr;
}
/**
* Sets the value of the regnAdr property.
*
* @param value
* allowed object is
* {@link PostalAddress1 }
*
*/
public Account34 setRegnAdr(PostalAddress1 value) {
this.regnAdr = 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