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

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

There is a newer version: SRU2024-10.2.4
Show newest version

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

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
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;


/**
 * Set of transactions to capture, sharing common characteristics.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CardPaymentDataSet4", propOrder = {
    "dataSetId",
    "tracblt",
    "dataSetInitr",
    "txTtls",
    "cmonData",
    "tx"
})
public class CardPaymentDataSet4 {

    @XmlElement(name = "DataSetId", required = true)
    protected DataSetIdentification1 dataSetId;
    @XmlElement(name = "Tracblt")
    protected List tracblt;
    @XmlElement(name = "DataSetInitr")
    protected GenericIdentification32 dataSetInitr;
    @XmlElement(name = "TxTtls", required = true)
    protected List txTtls;
    @XmlElement(name = "CmonData")
    protected CommonData2 cmonData;
    @XmlElement(name = "Tx", required = true)
    protected List tx;

    /**
     * Gets the value of the dataSetId property.
     * 
     * @return
     *     possible object is
     *     {@link DataSetIdentification1 }
     *     
     */
    public DataSetIdentification1 getDataSetId() {
        return dataSetId;
    }

    /**
     * Sets the value of the dataSetId property.
     * 
     * @param value
     *     allowed object is
     *     {@link DataSetIdentification1 }
     *     
     */
    public CardPaymentDataSet4 setDataSetId(DataSetIdentification1 value) {
        this.dataSetId = value;
        return this;
    }

    /**
     * Gets the value of the tracblt 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 JAXB object. * This is why there is not a set method for the tracblt property. * *

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

     *    getTracblt().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Traceability1 } * * */ public List getTracblt() { if (tracblt == null) { tracblt = new ArrayList(); } return this.tracblt; } /** * Gets the value of the dataSetInitr property. * * @return * possible object is * {@link GenericIdentification32 } * */ public GenericIdentification32 getDataSetInitr() { return dataSetInitr; } /** * Sets the value of the dataSetInitr property. * * @param value * allowed object is * {@link GenericIdentification32 } * */ public CardPaymentDataSet4 setDataSetInitr(GenericIdentification32 value) { this.dataSetInitr = value; return this; } /** * Gets the value of the txTtls 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 JAXB object. * This is why there is not a set method for the txTtls property. * *

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

     *    getTxTtls().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TransactionTotals2 } * * */ public List getTxTtls() { if (txTtls == null) { txTtls = new ArrayList(); } return this.txTtls; } /** * Gets the value of the cmonData property. * * @return * possible object is * {@link CommonData2 } * */ public CommonData2 getCmonData() { return cmonData; } /** * Sets the value of the cmonData property. * * @param value * allowed object is * {@link CommonData2 } * */ public CardPaymentDataSet4 setCmonData(CommonData2 value) { this.cmonData = value; return this; } /** * Gets the value of the tx 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 JAXB object. * This is why there is not a set method for the tx property. * *

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

     *    getTx().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CardPaymentDataSetTransaction1Choice } * * */ public List getTx() { if (tx == null) { tx = new ArrayList(); } return this.tx; } @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 tracblt list. * @see #getTracblt() * */ public CardPaymentDataSet4 addTracblt(Traceability1 tracblt) { getTracblt().add(tracblt); return this; } /** * Adds a new item to the txTtls list. * @see #getTxTtls() * */ public CardPaymentDataSet4 addTxTtls(TransactionTotals2 txTtls) { getTxTtls().add(txTtls); return this; } /** * Adds a new item to the tx list. * @see #getTx() * */ public CardPaymentDataSet4 addTx(CardPaymentDataSetTransaction1Choice tx) { getTx().add(tx); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy