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

com.prowidesoftware.swift.model.mx.dic.Transaction69 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;


/**
 * Specifies the details of the transaction.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Transaction69", propOrder = {
    "acctOwnrTxId",
    "acctSvcrTxId",
    "mktInfrstrctrTxId",
    "prcrTxId",
    "tradId",
    "poolId",
    "cmonId",
    "corpActnEvtId",
    "trptyAgtSvcPrvdrCollTxId",
    "clntTrptyCollTxId",
    "clntCollInstrId",
    "trptyAgtSvcPrvdrCollInstrId",
    "mstrRef",
    "clntRef",
    "acctOwnrLegId",
    "acctSvcrLegId",
    "txDtls",
    "splmtryData"
})
public class Transaction69 {

    @XmlElement(name = "AcctOwnrTxId", required = true)
    protected String acctOwnrTxId;
    @XmlElement(name = "AcctSvcrTxId")
    protected String acctSvcrTxId;
    @XmlElement(name = "MktInfrstrctrTxId")
    protected String mktInfrstrctrTxId;
    @XmlElement(name = "PrcrTxId")
    protected String prcrTxId;
    @XmlElement(name = "TradId")
    protected List tradId;
    @XmlElement(name = "PoolId")
    protected String poolId;
    @XmlElement(name = "CmonId")
    protected String cmonId;
    @XmlElement(name = "CorpActnEvtId")
    protected String corpActnEvtId;
    @XmlElement(name = "TrptyAgtSvcPrvdrCollTxId")
    protected String trptyAgtSvcPrvdrCollTxId;
    @XmlElement(name = "ClntTrptyCollTxId")
    protected String clntTrptyCollTxId;
    @XmlElement(name = "ClntCollInstrId")
    protected String clntCollInstrId;
    @XmlElement(name = "TrptyAgtSvcPrvdrCollInstrId")
    protected String trptyAgtSvcPrvdrCollInstrId;
    @XmlElement(name = "MstrRef")
    protected String mstrRef;
    @XmlElement(name = "ClntRef")
    protected AdditionalReference10 clntRef;
    @XmlElement(name = "AcctOwnrLegId")
    protected String acctOwnrLegId;
    @XmlElement(name = "AcctSvcrLegId")
    protected String acctSvcrLegId;
    @XmlElement(name = "TxDtls")
    protected TransactionDetails114 txDtls;
    @XmlElement(name = "SplmtryData")
    protected List splmtryData;

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

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

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

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

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

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

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

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

    /**
     * Gets the value of the tradId 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 tradId property. * *

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

     *    getTradId().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getTradId() { if (tradId == null) { tradId = new ArrayList(); } return this.tradId; } /** * Gets the value of the poolId property. * * @return * possible object is * {@link String } * */ public String getPoolId() { return poolId; } /** * Sets the value of the poolId property. * * @param value * allowed object is * {@link String } * */ public Transaction69 setPoolId(String value) { this.poolId = value; return this; } /** * Gets the value of the cmonId property. * * @return * possible object is * {@link String } * */ public String getCmonId() { return cmonId; } /** * Sets the value of the cmonId property. * * @param value * allowed object is * {@link String } * */ public Transaction69 setCmonId(String value) { this.cmonId = value; return this; } /** * Gets the value of the corpActnEvtId property. * * @return * possible object is * {@link String } * */ public String getCorpActnEvtId() { return corpActnEvtId; } /** * Sets the value of the corpActnEvtId property. * * @param value * allowed object is * {@link String } * */ public Transaction69 setCorpActnEvtId(String value) { this.corpActnEvtId = value; return this; } /** * Gets the value of the trptyAgtSvcPrvdrCollTxId property. * * @return * possible object is * {@link String } * */ public String getTrptyAgtSvcPrvdrCollTxId() { return trptyAgtSvcPrvdrCollTxId; } /** * Sets the value of the trptyAgtSvcPrvdrCollTxId property. * * @param value * allowed object is * {@link String } * */ public Transaction69 setTrptyAgtSvcPrvdrCollTxId(String value) { this.trptyAgtSvcPrvdrCollTxId = value; return this; } /** * Gets the value of the clntTrptyCollTxId property. * * @return * possible object is * {@link String } * */ public String getClntTrptyCollTxId() { return clntTrptyCollTxId; } /** * Sets the value of the clntTrptyCollTxId property. * * @param value * allowed object is * {@link String } * */ public Transaction69 setClntTrptyCollTxId(String value) { this.clntTrptyCollTxId = value; return this; } /** * Gets the value of the clntCollInstrId property. * * @return * possible object is * {@link String } * */ public String getClntCollInstrId() { return clntCollInstrId; } /** * Sets the value of the clntCollInstrId property. * * @param value * allowed object is * {@link String } * */ public Transaction69 setClntCollInstrId(String value) { this.clntCollInstrId = value; return this; } /** * Gets the value of the trptyAgtSvcPrvdrCollInstrId property. * * @return * possible object is * {@link String } * */ public String getTrptyAgtSvcPrvdrCollInstrId() { return trptyAgtSvcPrvdrCollInstrId; } /** * Sets the value of the trptyAgtSvcPrvdrCollInstrId property. * * @param value * allowed object is * {@link String } * */ public Transaction69 setTrptyAgtSvcPrvdrCollInstrId(String value) { this.trptyAgtSvcPrvdrCollInstrId = value; return this; } /** * Gets the value of the mstrRef property. * * @return * possible object is * {@link String } * */ public String getMstrRef() { return mstrRef; } /** * Sets the value of the mstrRef property. * * @param value * allowed object is * {@link String } * */ public Transaction69 setMstrRef(String value) { this.mstrRef = value; return this; } /** * Gets the value of the clntRef property. * * @return * possible object is * {@link AdditionalReference10 } * */ public AdditionalReference10 getClntRef() { return clntRef; } /** * Sets the value of the clntRef property. * * @param value * allowed object is * {@link AdditionalReference10 } * */ public Transaction69 setClntRef(AdditionalReference10 value) { this.clntRef = value; return this; } /** * Gets the value of the acctOwnrLegId property. * * @return * possible object is * {@link String } * */ public String getAcctOwnrLegId() { return acctOwnrLegId; } /** * Sets the value of the acctOwnrLegId property. * * @param value * allowed object is * {@link String } * */ public Transaction69 setAcctOwnrLegId(String value) { this.acctOwnrLegId = value; return this; } /** * Gets the value of the acctSvcrLegId property. * * @return * possible object is * {@link String } * */ public String getAcctSvcrLegId() { return acctSvcrLegId; } /** * Sets the value of the acctSvcrLegId property. * * @param value * allowed object is * {@link String } * */ public Transaction69 setAcctSvcrLegId(String value) { this.acctSvcrLegId = value; return this; } /** * Gets the value of the txDtls property. * * @return * possible object is * {@link TransactionDetails114 } * */ public TransactionDetails114 getTxDtls() { return txDtls; } /** * Sets the value of the txDtls property. * * @param value * allowed object is * {@link TransactionDetails114 } * */ public Transaction69 setTxDtls(TransactionDetails114 value) { this.txDtls = value; return this; } /** * Gets the value of the splmtryData 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 splmtryData property. * *

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

     *    getSplmtryData().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SupplementaryData1 } * * */ public List getSplmtryData() { if (splmtryData == null) { splmtryData = new ArrayList(); } return this.splmtryData; } @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 tradId list. * @see #getTradId() * */ public Transaction69 addTradId(String tradId) { getTradId().add(tradId); return this; } /** * Adds a new item to the splmtryData list. * @see #getSplmtryData() * */ public Transaction69 addSplmtryData(SupplementaryData1 splmtryData) { getSplmtryData().add(splmtryData); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy