com.prowidesoftware.swift.model.mx.dic.PaymentContext3 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;
/**
* Payment context in which the transaction is performed.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PaymentContext3", propOrder = {
"cardPres",
"crdhldrPres",
"onLineCntxt",
"attndncCntxt",
"txEnvt",
"txChanl",
"attndntMsgCpbl",
"attndntLang",
"cardDataNtryMd",
"fllbckInd",
"authntcnMtd"
})
public class PaymentContext3 {
@XmlElement(name = "CardPres")
protected Boolean cardPres;
@XmlElement(name = "CrdhldrPres")
protected Boolean crdhldrPres;
@XmlElement(name = "OnLineCntxt")
protected Boolean onLineCntxt;
@XmlElement(name = "AttndncCntxt")
@XmlSchemaType(name = "string")
protected AttendanceContext1Code attndncCntxt;
@XmlElement(name = "TxEnvt")
@XmlSchemaType(name = "string")
protected TransactionEnvironment1Code txEnvt;
@XmlElement(name = "TxChanl")
@XmlSchemaType(name = "string")
protected TransactionChannel1Code txChanl;
@XmlElement(name = "AttndntMsgCpbl")
protected Boolean attndntMsgCpbl;
@XmlElement(name = "AttndntLang")
protected String attndntLang;
@XmlElement(name = "CardDataNtryMd", required = true)
@XmlSchemaType(name = "string")
protected CardDataReading1Code cardDataNtryMd;
@XmlElement(name = "FllbckInd")
protected Boolean fllbckInd;
@XmlElement(name = "AuthntcnMtd")
protected CardholderAuthentication2 authntcnMtd;
/**
* Gets the value of the cardPres property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCardPres() {
return cardPres;
}
/**
* Sets the value of the cardPres property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public PaymentContext3 setCardPres(Boolean value) {
this.cardPres = value;
return this;
}
/**
* Gets the value of the crdhldrPres property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCrdhldrPres() {
return crdhldrPres;
}
/**
* Sets the value of the crdhldrPres property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public PaymentContext3 setCrdhldrPres(Boolean value) {
this.crdhldrPres = value;
return this;
}
/**
* Gets the value of the onLineCntxt property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isOnLineCntxt() {
return onLineCntxt;
}
/**
* Sets the value of the onLineCntxt property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public PaymentContext3 setOnLineCntxt(Boolean value) {
this.onLineCntxt = value;
return this;
}
/**
* Gets the value of the attndncCntxt property.
*
* @return
* possible object is
* {@link AttendanceContext1Code }
*
*/
public AttendanceContext1Code getAttndncCntxt() {
return attndncCntxt;
}
/**
* Sets the value of the attndncCntxt property.
*
* @param value
* allowed object is
* {@link AttendanceContext1Code }
*
*/
public PaymentContext3 setAttndncCntxt(AttendanceContext1Code value) {
this.attndncCntxt = value;
return this;
}
/**
* Gets the value of the txEnvt property.
*
* @return
* possible object is
* {@link TransactionEnvironment1Code }
*
*/
public TransactionEnvironment1Code getTxEnvt() {
return txEnvt;
}
/**
* Sets the value of the txEnvt property.
*
* @param value
* allowed object is
* {@link TransactionEnvironment1Code }
*
*/
public PaymentContext3 setTxEnvt(TransactionEnvironment1Code value) {
this.txEnvt = value;
return this;
}
/**
* Gets the value of the txChanl property.
*
* @return
* possible object is
* {@link TransactionChannel1Code }
*
*/
public TransactionChannel1Code getTxChanl() {
return txChanl;
}
/**
* Sets the value of the txChanl property.
*
* @param value
* allowed object is
* {@link TransactionChannel1Code }
*
*/
public PaymentContext3 setTxChanl(TransactionChannel1Code value) {
this.txChanl = value;
return this;
}
/**
* Gets the value of the attndntMsgCpbl property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAttndntMsgCpbl() {
return attndntMsgCpbl;
}
/**
* Sets the value of the attndntMsgCpbl property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public PaymentContext3 setAttndntMsgCpbl(Boolean value) {
this.attndntMsgCpbl = value;
return this;
}
/**
* Gets the value of the attndntLang property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAttndntLang() {
return attndntLang;
}
/**
* Sets the value of the attndntLang property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentContext3 setAttndntLang(String value) {
this.attndntLang = value;
return this;
}
/**
* 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 PaymentContext3 setCardDataNtryMd(CardDataReading1Code value) {
this.cardDataNtryMd = value;
return this;
}
/**
* Gets the value of the fllbckInd property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFllbckInd() {
return fllbckInd;
}
/**
* Sets the value of the fllbckInd property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public PaymentContext3 setFllbckInd(Boolean value) {
this.fllbckInd = value;
return this;
}
/**
* Gets the value of the authntcnMtd property.
*
* @return
* possible object is
* {@link CardholderAuthentication2 }
*
*/
public CardholderAuthentication2 getAuthntcnMtd() {
return authntcnMtd;
}
/**
* Sets the value of the authntcnMtd property.
*
* @param value
* allowed object is
* {@link CardholderAuthentication2 }
*
*/
public PaymentContext3 setAuthntcnMtd(CardholderAuthentication2 value) {
this.authntcnMtd = 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