All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.prowidesoftware.swift.model.mx.dic.CardPaymentTransaction83 Maven / Gradle / Ivy


package com.prowidesoftware.swift.model.mx.dic;

import java.util.ArrayList;
import java.util.List;
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;


/**
 * Transaction information in the cancellation advice.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CardPaymentTransaction83", propOrder = {
    "mrchntCtgyCd",
    "cstmrCnsnt",
    "cardPrgrmmPropsd",
    "cardPrgrmmApld",
    "saleRefId",
    "txId",
    "orgnlTx",
    "txSucss",
    "rvsl",
    "failrRsn",
    "initrTxId",
    "rcptTxId",
    "rcncltnId",
    "intrchngData",
    "txDtls",
    "authstnRslt",
    "addtlTxData"
})
public class CardPaymentTransaction83 {

    @XmlElement(name = "MrchntCtgyCd", required = true)
    protected String mrchntCtgyCd;
    @XmlElement(name = "CstmrCnsnt", type = Boolean.class)
    protected List cstmrCnsnt;
    @XmlElement(name = "CardPrgrmmPropsd")
    protected List cardPrgrmmPropsd;
    @XmlElement(name = "CardPrgrmmApld")
    protected List cardPrgrmmApld;
    @XmlElement(name = "SaleRefId")
    protected String saleRefId;
    @XmlElement(name = "TxId", required = true)
    protected TransactionIdentifier1 txId;
    @XmlElement(name = "OrgnlTx")
    protected CardPaymentTransaction79 orgnlTx;
    @XmlElement(name = "TxSucss")
    protected boolean txSucss;
    @XmlElement(name = "Rvsl")
    protected Boolean rvsl;
    @XmlElement(name = "FailrRsn")
    @XmlSchemaType(name = "string")
    protected List failrRsn;
    @XmlElement(name = "InitrTxId")
    protected String initrTxId;
    @XmlElement(name = "RcptTxId")
    protected String rcptTxId;
    @XmlElement(name = "RcncltnId")
    protected String rcncltnId;
    @XmlElement(name = "IntrchngData")
    protected String intrchngData;
    @XmlElement(name = "TxDtls", required = true)
    protected CardPaymentTransactionDetails34 txDtls;
    @XmlElement(name = "AuthstnRslt")
    protected AuthorisationResult12 authstnRslt;
    @XmlElement(name = "AddtlTxData")
    protected List addtlTxData;

    /**
     * Gets the value of the mrchntCtgyCd property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getMrchntCtgyCd() {
        return mrchntCtgyCd;
    }

    /**
     * Sets the value of the mrchntCtgyCd property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public CardPaymentTransaction83 setMrchntCtgyCd(String value) {
        this.mrchntCtgyCd = value;
        return this;
    }

    /**
     * Gets the value of the cstmrCnsnt property.
     * 
     * 

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a {@code set} method for the cstmrCnsnt property. * *

* For example, to add a new item, do as follows: *

     *    getCstmrCnsnt().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Boolean } * * * @return * The value of the cstmrCnsnt property. */ public List getCstmrCnsnt() { if (cstmrCnsnt == null) { cstmrCnsnt = new ArrayList<>(); } return this.cstmrCnsnt; } /** * Gets the value of the cardPrgrmmPropsd property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a {@code set} method for the cardPrgrmmPropsd property. * *

* For example, to add a new item, do as follows: *

     *    getCardPrgrmmPropsd().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * * @return * The value of the cardPrgrmmPropsd property. */ public List getCardPrgrmmPropsd() { if (cardPrgrmmPropsd == null) { cardPrgrmmPropsd = new ArrayList<>(); } return this.cardPrgrmmPropsd; } /** * Gets the value of the cardPrgrmmApld property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a {@code set} method for the cardPrgrmmApld property. * *

* For example, to add a new item, do as follows: *

     *    getCardPrgrmmApld().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * * @return * The value of the cardPrgrmmApld property. */ public List getCardPrgrmmApld() { if (cardPrgrmmApld == null) { cardPrgrmmApld = new ArrayList<>(); } return this.cardPrgrmmApld; } /** * Gets the value of the saleRefId property. * * @return * possible object is * {@link String } * */ public String getSaleRefId() { return saleRefId; } /** * Sets the value of the saleRefId property. * * @param value * allowed object is * {@link String } * */ public CardPaymentTransaction83 setSaleRefId(String value) { this.saleRefId = value; return this; } /** * Gets the value of the txId property. * * @return * possible object is * {@link TransactionIdentifier1 } * */ public TransactionIdentifier1 getTxId() { return txId; } /** * Sets the value of the txId property. * * @param value * allowed object is * {@link TransactionIdentifier1 } * */ public CardPaymentTransaction83 setTxId(TransactionIdentifier1 value) { this.txId = value; return this; } /** * Gets the value of the orgnlTx property. * * @return * possible object is * {@link CardPaymentTransaction79 } * */ public CardPaymentTransaction79 getOrgnlTx() { return orgnlTx; } /** * Sets the value of the orgnlTx property. * * @param value * allowed object is * {@link CardPaymentTransaction79 } * */ public CardPaymentTransaction83 setOrgnlTx(CardPaymentTransaction79 value) { this.orgnlTx = value; return this; } /** * Gets the value of the txSucss property. * */ public boolean isTxSucss() { return txSucss; } /** * Sets the value of the txSucss property. * */ public CardPaymentTransaction83 setTxSucss(boolean value) { this.txSucss = value; return this; } /** * Gets the value of the rvsl property. * * @return * possible object is * {@link Boolean } * */ public Boolean isRvsl() { return rvsl; } /** * Sets the value of the rvsl property. * * @param value * allowed object is * {@link Boolean } * */ public CardPaymentTransaction83 setRvsl(Boolean value) { this.rvsl = value; return this; } /** * Gets the value of the failrRsn property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a {@code set} method for the failrRsn property. * *

* For example, to add a new item, do as follows: *

     *    getFailrRsn().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FailureReason3Code } * * * @return * The value of the failrRsn property. */ public List getFailrRsn() { if (failrRsn == null) { failrRsn = new ArrayList<>(); } return this.failrRsn; } /** * Gets the value of the initrTxId property. * * @return * possible object is * {@link String } * */ public String getInitrTxId() { return initrTxId; } /** * Sets the value of the initrTxId property. * * @param value * allowed object is * {@link String } * */ public CardPaymentTransaction83 setInitrTxId(String value) { this.initrTxId = value; return this; } /** * Gets the value of the rcptTxId property. * * @return * possible object is * {@link String } * */ public String getRcptTxId() { return rcptTxId; } /** * Sets the value of the rcptTxId property. * * @param value * allowed object is * {@link String } * */ public CardPaymentTransaction83 setRcptTxId(String value) { this.rcptTxId = value; return this; } /** * Gets the value of the rcncltnId property. * * @return * possible object is * {@link String } * */ public String getRcncltnId() { return rcncltnId; } /** * Sets the value of the rcncltnId property. * * @param value * allowed object is * {@link String } * */ public CardPaymentTransaction83 setRcncltnId(String value) { this.rcncltnId = value; return this; } /** * Gets the value of the intrchngData property. * * @return * possible object is * {@link String } * */ public String getIntrchngData() { return intrchngData; } /** * Sets the value of the intrchngData property. * * @param value * allowed object is * {@link String } * */ public CardPaymentTransaction83 setIntrchngData(String value) { this.intrchngData = value; return this; } /** * Gets the value of the txDtls property. * * @return * possible object is * {@link CardPaymentTransactionDetails34 } * */ public CardPaymentTransactionDetails34 getTxDtls() { return txDtls; } /** * Sets the value of the txDtls property. * * @param value * allowed object is * {@link CardPaymentTransactionDetails34 } * */ public CardPaymentTransaction83 setTxDtls(CardPaymentTransactionDetails34 value) { this.txDtls = value; return this; } /** * Gets the value of the authstnRslt property. * * @return * possible object is * {@link AuthorisationResult12 } * */ public AuthorisationResult12 getAuthstnRslt() { return authstnRslt; } /** * Sets the value of the authstnRslt property. * * @param value * allowed object is * {@link AuthorisationResult12 } * */ public CardPaymentTransaction83 setAuthstnRslt(AuthorisationResult12 value) { this.authstnRslt = value; return this; } /** * Gets the value of the addtlTxData property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a {@code set} method for the addtlTxData property. * *

* For example, to add a new item, do as follows: *

     *    getAddtlTxData().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * * @return * The value of the addtlTxData property. */ public List getAddtlTxData() { if (addtlTxData == null) { addtlTxData = new ArrayList<>(); } return this.addtlTxData; } @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); } /** * Adds a new item to the cstmrCnsnt list. * @see #getCstmrCnsnt() * */ public CardPaymentTransaction83 addCstmrCnsnt(Boolean cstmrCnsnt) { getCstmrCnsnt().add(cstmrCnsnt); return this; } /** * Adds a new item to the cardPrgrmmPropsd list. * @see #getCardPrgrmmPropsd() * */ public CardPaymentTransaction83 addCardPrgrmmPropsd(String cardPrgrmmPropsd) { getCardPrgrmmPropsd().add(cardPrgrmmPropsd); return this; } /** * Adds a new item to the cardPrgrmmApld list. * @see #getCardPrgrmmApld() * */ public CardPaymentTransaction83 addCardPrgrmmApld(String cardPrgrmmApld) { getCardPrgrmmApld().add(cardPrgrmmApld); return this; } /** * Adds a new item to the failrRsn list. * @see #getFailrRsn() * */ public CardPaymentTransaction83 addFailrRsn(FailureReason3Code failrRsn) { getFailrRsn().add(failrRsn); return this; } /** * Adds a new item to the addtlTxData list. * @see #getAddtlTxData() * */ public CardPaymentTransaction83 addAddtlTxData(String addtlTxData) { getAddtlTxData().add(addtlTxData); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy