com.prowidesoftware.swift.model.mx.dic.CashAccountIdentification7Choice 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;
/**
* Choice between formats for the identification of a cash account.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CashAccountIdentification7Choice", propOrder = {
"iban",
"bban",
"upic",
"dmstAcct"
})
public class CashAccountIdentification7Choice {
@XmlElement(name = "IBAN")
protected String iban;
@XmlElement(name = "BBAN")
protected String bban;
@XmlElement(name = "UPIC")
protected String upic;
@XmlElement(name = "DmstAcct")
protected SimpleIdentificationInformation4 dmstAcct;
/**
* Gets the value of the iban property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIBAN() {
return iban;
}
/**
* Sets the value of the iban property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CashAccountIdentification7Choice setIBAN(String value) {
this.iban = value;
return this;
}
/**
* Gets the value of the bban property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBBAN() {
return bban;
}
/**
* Sets the value of the bban property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CashAccountIdentification7Choice setBBAN(String value) {
this.bban = value;
return this;
}
/**
* Gets the value of the upic property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUPIC() {
return upic;
}
/**
* Sets the value of the upic property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CashAccountIdentification7Choice setUPIC(String value) {
this.upic = value;
return this;
}
/**
* Gets the value of the dmstAcct property.
*
* @return
* possible object is
* {@link SimpleIdentificationInformation4 }
*
*/
public SimpleIdentificationInformation4 getDmstAcct() {
return dmstAcct;
}
/**
* Sets the value of the dmstAcct property.
*
* @param value
* allowed object is
* {@link SimpleIdentificationInformation4 }
*
*/
public CashAccountIdentification7Choice setDmstAcct(SimpleIdentificationInformation4 value) {
this.dmstAcct = 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