com.prowidesoftware.swift.model.mx.dic.AccountIdentification54Choice 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;
/**
* Identifier of an account, as assigned by the account servicer.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountIdentification54Choice", propOrder = {
"card",
"msisdn",
"eMail",
"iban",
"bban",
"upic",
"dmst",
"othr"
})
public class AccountIdentification54Choice {
@XmlElement(name = "Card")
protected String card;
@XmlElement(name = "MSISDN")
protected String msisdn;
@XmlElement(name = "EMail")
protected String eMail;
@XmlElement(name = "IBAN")
protected String iban;
@XmlElement(name = "BBAN")
protected String bban;
@XmlElement(name = "UPIC")
protected String upic;
@XmlElement(name = "Dmst")
protected String dmst;
@XmlElement(name = "Othr")
protected String othr;
/**
* Gets the value of the card property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCard() {
return card;
}
/**
* Sets the value of the card property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AccountIdentification54Choice setCard(String value) {
this.card = value;
return this;
}
/**
* Gets the value of the msisdn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMSISDN() {
return msisdn;
}
/**
* Sets the value of the msisdn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AccountIdentification54Choice setMSISDN(String value) {
this.msisdn = value;
return this;
}
/**
* Gets the value of the eMail property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEMail() {
return eMail;
}
/**
* Sets the value of the eMail property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AccountIdentification54Choice setEMail(String value) {
this.eMail = value;
return this;
}
/**
* 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 AccountIdentification54Choice 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 AccountIdentification54Choice 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 AccountIdentification54Choice setUPIC(String value) {
this.upic = value;
return this;
}
/**
* Gets the value of the dmst property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDmst() {
return dmst;
}
/**
* Sets the value of the dmst property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AccountIdentification54Choice setDmst(String value) {
this.dmst = value;
return this;
}
/**
* Gets the value of the othr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOthr() {
return othr;
}
/**
* Sets the value of the othr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AccountIdentification54Choice setOthr(String value) {
this.othr = 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