com.prowidesoftware.swift.model.mx.dic.CashAccount32 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
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.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;
/**
* Account to or from which a cash entry is made.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CashAccount32", propOrder = {
"id",
"acctOwnr",
"acctSvcr",
"acctSvcrBrnch"
})
public class CashAccount32 {
@XmlElement(name = "Id", required = true)
protected AccountIdentificationAndName5 id;
@XmlElement(name = "AcctOwnr")
protected PartyIdentification70Choice acctOwnr;
@XmlElement(name = "AcctSvcr")
protected PartyIdentification70Choice acctSvcr;
@XmlElement(name = "AcctSvcrBrnch")
protected BranchData acctSvcrBrnch;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link AccountIdentificationAndName5 }
*
*/
public AccountIdentificationAndName5 getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link AccountIdentificationAndName5 }
*
*/
public CashAccount32 setId(AccountIdentificationAndName5 value) {
this.id = value;
return this;
}
/**
* Gets the value of the acctOwnr property.
*
* @return
* possible object is
* {@link PartyIdentification70Choice }
*
*/
public PartyIdentification70Choice getAcctOwnr() {
return acctOwnr;
}
/**
* Sets the value of the acctOwnr property.
*
* @param value
* allowed object is
* {@link PartyIdentification70Choice }
*
*/
public CashAccount32 setAcctOwnr(PartyIdentification70Choice value) {
this.acctOwnr = value;
return this;
}
/**
* Gets the value of the acctSvcr property.
*
* @return
* possible object is
* {@link PartyIdentification70Choice }
*
*/
public PartyIdentification70Choice getAcctSvcr() {
return acctSvcr;
}
/**
* Sets the value of the acctSvcr property.
*
* @param value
* allowed object is
* {@link PartyIdentification70Choice }
*
*/
public CashAccount32 setAcctSvcr(PartyIdentification70Choice value) {
this.acctSvcr = value;
return this;
}
/**
* Gets the value of the acctSvcrBrnch property.
*
* @return
* possible object is
* {@link BranchData }
*
*/
public BranchData getAcctSvcrBrnch() {
return acctSvcrBrnch;
}
/**
* Sets the value of the acctSvcrBrnch property.
*
* @param value
* allowed object is
* {@link BranchData }
*
*/
public CashAccount32 setAcctSvcrBrnch(BranchData value) {
this.acctSvcrBrnch = 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