com.prowidesoftware.swift.model.mx.dic.PaymentCard17 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.XmlSchemaType;
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;
/**
* Card performing the withdrawal transaction.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PaymentCard17", propOrder = {
"cardDataNtryMd",
"fllbckInd",
"prtctdCardData",
"plainCardData",
"cardCtryCd",
"cardCcyCd",
"rtndCardBal"
})
public class PaymentCard17 {
@XmlElement(name = "CardDataNtryMd", required = true)
@XmlSchemaType(name = "string")
protected CardDataReading1Code cardDataNtryMd;
@XmlElement(name = "FllbckInd")
@XmlSchemaType(name = "string")
protected CardFallback1Code fllbckInd;
@XmlElement(name = "PrtctdCardData")
protected ContentInformationType10 prtctdCardData;
@XmlElement(name = "PlainCardData")
protected PlainCardData14 plainCardData;
@XmlElement(name = "CardCtryCd")
protected String cardCtryCd;
@XmlElement(name = "CardCcyCd")
protected String cardCcyCd;
@XmlElement(name = "RtndCardBal")
protected CurrencyAndAmount rtndCardBal;
/**
* Gets the value of the cardDataNtryMd property.
*
* @return
* possible object is
* {@link CardDataReading1Code }
*
*/
public CardDataReading1Code getCardDataNtryMd() {
return cardDataNtryMd;
}
/**
* Sets the value of the cardDataNtryMd property.
*
* @param value
* allowed object is
* {@link CardDataReading1Code }
*
*/
public PaymentCard17 setCardDataNtryMd(CardDataReading1Code value) {
this.cardDataNtryMd = value;
return this;
}
/**
* Gets the value of the fllbckInd property.
*
* @return
* possible object is
* {@link CardFallback1Code }
*
*/
public CardFallback1Code getFllbckInd() {
return fllbckInd;
}
/**
* Sets the value of the fllbckInd property.
*
* @param value
* allowed object is
* {@link CardFallback1Code }
*
*/
public PaymentCard17 setFllbckInd(CardFallback1Code value) {
this.fllbckInd = value;
return this;
}
/**
* Gets the value of the prtctdCardData property.
*
* @return
* possible object is
* {@link ContentInformationType10 }
*
*/
public ContentInformationType10 getPrtctdCardData() {
return prtctdCardData;
}
/**
* Sets the value of the prtctdCardData property.
*
* @param value
* allowed object is
* {@link ContentInformationType10 }
*
*/
public PaymentCard17 setPrtctdCardData(ContentInformationType10 value) {
this.prtctdCardData = value;
return this;
}
/**
* Gets the value of the plainCardData property.
*
* @return
* possible object is
* {@link PlainCardData14 }
*
*/
public PlainCardData14 getPlainCardData() {
return plainCardData;
}
/**
* Sets the value of the plainCardData property.
*
* @param value
* allowed object is
* {@link PlainCardData14 }
*
*/
public PaymentCard17 setPlainCardData(PlainCardData14 value) {
this.plainCardData = value;
return this;
}
/**
* Gets the value of the cardCtryCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCardCtryCd() {
return cardCtryCd;
}
/**
* Sets the value of the cardCtryCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentCard17 setCardCtryCd(String value) {
this.cardCtryCd = value;
return this;
}
/**
* Gets the value of the cardCcyCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCardCcyCd() {
return cardCcyCd;
}
/**
* Sets the value of the cardCcyCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentCard17 setCardCcyCd(String value) {
this.cardCcyCd = value;
return this;
}
/**
* Gets the value of the rtndCardBal property.
*
* @return
* possible object is
* {@link CurrencyAndAmount }
*
*/
public CurrencyAndAmount getRtndCardBal() {
return rtndCardBal;
}
/**
* Sets the value of the rtndCardBal property.
*
* @param value
* allowed object is
* {@link CurrencyAndAmount }
*
*/
public PaymentCard17 setRtndCardBal(CurrencyAndAmount value) {
this.rtndCardBal = 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