com.prowidesoftware.swift.model.mx.dic.CardAccount15 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.XmlSchemaType;
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;
/**
* Way to identify a customer account or a relationship to its account affected for the transaction.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CardAccount15", propOrder = {
"selctnMtd",
"selctdAcctTp",
"acctNm",
"acctOwnr",
"ccy",
"acctIdr",
"svcr"
})
public class CardAccount15 {
@XmlElement(name = "SelctnMtd")
@XmlSchemaType(name = "string")
protected AccountChoiceMethod1Code selctnMtd;
@XmlElement(name = "SelctdAcctTp")
@XmlSchemaType(name = "string")
protected CardAccountType3Code selctdAcctTp;
@XmlElement(name = "AcctNm")
protected String acctNm;
@XmlElement(name = "AcctOwnr")
protected NameAndAddress3 acctOwnr;
@XmlElement(name = "Ccy")
protected String ccy;
@XmlElement(name = "AcctIdr")
protected AccountIdentification39Choice acctIdr;
@XmlElement(name = "Svcr")
protected PartyIdentification177Choice svcr;
/**
* Gets the value of the selctnMtd property.
*
* @return
* possible object is
* {@link AccountChoiceMethod1Code }
*
*/
public AccountChoiceMethod1Code getSelctnMtd() {
return selctnMtd;
}
/**
* Sets the value of the selctnMtd property.
*
* @param value
* allowed object is
* {@link AccountChoiceMethod1Code }
*
*/
public CardAccount15 setSelctnMtd(AccountChoiceMethod1Code value) {
this.selctnMtd = value;
return this;
}
/**
* Gets the value of the selctdAcctTp property.
*
* @return
* possible object is
* {@link CardAccountType3Code }
*
*/
public CardAccountType3Code getSelctdAcctTp() {
return selctdAcctTp;
}
/**
* Sets the value of the selctdAcctTp property.
*
* @param value
* allowed object is
* {@link CardAccountType3Code }
*
*/
public CardAccount15 setSelctdAcctTp(CardAccountType3Code value) {
this.selctdAcctTp = 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 CardAccount15 setAcctNm(String value) {
this.acctNm = value;
return this;
}
/**
* Gets the value of the acctOwnr property.
*
* @return
* possible object is
* {@link NameAndAddress3 }
*
*/
public NameAndAddress3 getAcctOwnr() {
return acctOwnr;
}
/**
* Sets the value of the acctOwnr property.
*
* @param value
* allowed object is
* {@link NameAndAddress3 }
*
*/
public CardAccount15 setAcctOwnr(NameAndAddress3 value) {
this.acctOwnr = 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 CardAccount15 setCcy(String value) {
this.ccy = value;
return this;
}
/**
* Gets the value of the acctIdr property.
*
* @return
* possible object is
* {@link AccountIdentification39Choice }
*
*/
public AccountIdentification39Choice getAcctIdr() {
return acctIdr;
}
/**
* Sets the value of the acctIdr property.
*
* @param value
* allowed object is
* {@link AccountIdentification39Choice }
*
*/
public CardAccount15 setAcctIdr(AccountIdentification39Choice value) {
this.acctIdr = value;
return this;
}
/**
* Gets the value of the svcr property.
*
* @return
* possible object is
* {@link PartyIdentification177Choice }
*
*/
public PartyIdentification177Choice getSvcr() {
return svcr;
}
/**
* Sets the value of the svcr property.
*
* @param value
* allowed object is
* {@link PartyIdentification177Choice }
*
*/
public CardAccount15 setSvcr(PartyIdentification177Choice value) {
this.svcr = 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