com.prowidesoftware.swift.model.mx.dic.CashAccount38 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;
/**
* Provides the details to identify an account.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CashAccount38", propOrder = {
"id",
"tp",
"ccy",
"nm",
"prxy"
})
public class CashAccount38 {
@XmlElement(name = "Id", required = true)
protected AccountIdentification4Choice id;
@XmlElement(name = "Tp")
protected CashAccountType2Choice tp;
@XmlElement(name = "Ccy")
protected String ccy;
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "Prxy")
protected ProxyAccountIdentification1 prxy;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link AccountIdentification4Choice }
*
*/
public AccountIdentification4Choice getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link AccountIdentification4Choice }
*
*/
public CashAccount38 setId(AccountIdentification4Choice value) {
this.id = value;
return this;
}
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link CashAccountType2Choice }
*
*/
public CashAccountType2Choice getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link CashAccountType2Choice }
*
*/
public CashAccount38 setTp(CashAccountType2Choice value) {
this.tp = value;
return this;
}
/**
* Gets the value of the ccy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCcy() {
return ccy;
}
/**
* Sets the value of the ccy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CashAccount38 setCcy(String value) {
this.ccy = value;
return this;
}
/**
* Gets the value of the nm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNm() {
return nm;
}
/**
* Sets the value of the nm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CashAccount38 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the prxy property.
*
* @return
* possible object is
* {@link ProxyAccountIdentification1 }
*
*/
public ProxyAccountIdentification1 getPrxy() {
return prxy;
}
/**
* Sets the value of the prxy property.
*
* @param value
* allowed object is
* {@link ProxyAccountIdentification1 }
*
*/
public CashAccount38 setPrxy(ProxyAccountIdentification1 value) {
this.prxy = 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