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

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


/**
 * Describes the type of product and the assets to be transferred.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ISATransfer24", propOrder = {
    "pmryIndvInvstr",
    "scndryIndvInvstr",
    "othrIndvInvstr",
    "pmryCorpInvstr",
    "scndryCorpInvstr",
    "othrCorpInvstr",
    "trfrAcct",
    "nmneeAcct",
    "trfee",
    "intrmyInf",
    "cshAcct",
    "pdctTrfAndRef",
    "xtnsn"
})
public class ISATransfer24 {

    @XmlElement(name = "PmryIndvInvstr")
    protected IndividualPerson8 pmryIndvInvstr;
    @XmlElement(name = "ScndryIndvInvstr")
    protected IndividualPerson8 scndryIndvInvstr;
    @XmlElement(name = "OthrIndvInvstr")
    protected List othrIndvInvstr;
    @XmlElement(name = "PmryCorpInvstr")
    protected Organisation21 pmryCorpInvstr;
    @XmlElement(name = "ScndryCorpInvstr")
    protected Organisation21 scndryCorpInvstr;
    @XmlElement(name = "OthrCorpInvstr")
    protected List othrCorpInvstr;
    @XmlElement(name = "TrfrAcct", required = true)
    protected Account19 trfrAcct;
    @XmlElement(name = "NmneeAcct")
    protected Account19 nmneeAcct;
    @XmlElement(name = "Trfee", required = true)
    protected PartyIdentification70Choice trfee;
    @XmlElement(name = "IntrmyInf")
    protected List intrmyInf;
    @XmlElement(name = "CshAcct")
    protected CashAccount34 cshAcct;
    @XmlElement(name = "PdctTrfAndRef", required = true)
    protected ISATransfer25 pdctTrfAndRef;
    @XmlElement(name = "Xtnsn")
    protected List xtnsn;

    /**
     * Gets the value of the pmryIndvInvstr property.
     * 
     * @return
     *     possible object is
     *     {@link IndividualPerson8 }
     *     
     */
    public IndividualPerson8 getPmryIndvInvstr() {
        return pmryIndvInvstr;
    }

    /**
     * Sets the value of the pmryIndvInvstr property.
     * 
     * @param value
     *     allowed object is
     *     {@link IndividualPerson8 }
     *     
     */
    public ISATransfer24 setPmryIndvInvstr(IndividualPerson8 value) {
        this.pmryIndvInvstr = value;
        return this;
    }

    /**
     * Gets the value of the scndryIndvInvstr property.
     * 
     * @return
     *     possible object is
     *     {@link IndividualPerson8 }
     *     
     */
    public IndividualPerson8 getScndryIndvInvstr() {
        return scndryIndvInvstr;
    }

    /**
     * Sets the value of the scndryIndvInvstr property.
     * 
     * @param value
     *     allowed object is
     *     {@link IndividualPerson8 }
     *     
     */
    public ISATransfer24 setScndryIndvInvstr(IndividualPerson8 value) {
        this.scndryIndvInvstr = value;
        return this;
    }

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

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

     *    getOthrIndvInvstr().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link IndividualPerson8 } * * * @return * The value of the othrIndvInvstr property. */ public List getOthrIndvInvstr() { if (othrIndvInvstr == null) { othrIndvInvstr = new ArrayList<>(); } return this.othrIndvInvstr; } /** * Gets the value of the pmryCorpInvstr property. * * @return * possible object is * {@link Organisation21 } * */ public Organisation21 getPmryCorpInvstr() { return pmryCorpInvstr; } /** * Sets the value of the pmryCorpInvstr property. * * @param value * allowed object is * {@link Organisation21 } * */ public ISATransfer24 setPmryCorpInvstr(Organisation21 value) { this.pmryCorpInvstr = value; return this; } /** * Gets the value of the scndryCorpInvstr property. * * @return * possible object is * {@link Organisation21 } * */ public Organisation21 getScndryCorpInvstr() { return scndryCorpInvstr; } /** * Sets the value of the scndryCorpInvstr property. * * @param value * allowed object is * {@link Organisation21 } * */ public ISATransfer24 setScndryCorpInvstr(Organisation21 value) { this.scndryCorpInvstr = value; return this; } /** * Gets the value of the othrCorpInvstr 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 othrCorpInvstr property. * *

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

     *    getOthrCorpInvstr().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Organisation21 } * * * @return * The value of the othrCorpInvstr property. */ public List getOthrCorpInvstr() { if (othrCorpInvstr == null) { othrCorpInvstr = new ArrayList<>(); } return this.othrCorpInvstr; } /** * Gets the value of the trfrAcct property. * * @return * possible object is * {@link Account19 } * */ public Account19 getTrfrAcct() { return trfrAcct; } /** * Sets the value of the trfrAcct property. * * @param value * allowed object is * {@link Account19 } * */ public ISATransfer24 setTrfrAcct(Account19 value) { this.trfrAcct = value; return this; } /** * Gets the value of the nmneeAcct property. * * @return * possible object is * {@link Account19 } * */ public Account19 getNmneeAcct() { return nmneeAcct; } /** * Sets the value of the nmneeAcct property. * * @param value * allowed object is * {@link Account19 } * */ public ISATransfer24 setNmneeAcct(Account19 value) { this.nmneeAcct = value; return this; } /** * Gets the value of the trfee property. * * @return * possible object is * {@link PartyIdentification70Choice } * */ public PartyIdentification70Choice getTrfee() { return trfee; } /** * Sets the value of the trfee property. * * @param value * allowed object is * {@link PartyIdentification70Choice } * */ public ISATransfer24 setTrfee(PartyIdentification70Choice value) { this.trfee = value; return this; } /** * Gets the value of the intrmyInf 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 intrmyInf property. * *

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

     *    getIntrmyInf().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Intermediary34 } * * * @return * The value of the intrmyInf property. */ public List getIntrmyInf() { if (intrmyInf == null) { intrmyInf = new ArrayList<>(); } return this.intrmyInf; } /** * Gets the value of the cshAcct property. * * @return * possible object is * {@link CashAccount34 } * */ public CashAccount34 getCshAcct() { return cshAcct; } /** * Sets the value of the cshAcct property. * * @param value * allowed object is * {@link CashAccount34 } * */ public ISATransfer24 setCshAcct(CashAccount34 value) { this.cshAcct = value; return this; } /** * Gets the value of the pdctTrfAndRef property. * * @return * possible object is * {@link ISATransfer25 } * */ public ISATransfer25 getPdctTrfAndRef() { return pdctTrfAndRef; } /** * Sets the value of the pdctTrfAndRef property. * * @param value * allowed object is * {@link ISATransfer25 } * */ public ISATransfer24 setPdctTrfAndRef(ISATransfer25 value) { this.pdctTrfAndRef = value; return this; } /** * Gets the value of the xtnsn 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 xtnsn property. * *

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

     *    getXtnsn().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Extension1 } * * * @return * The value of the xtnsn property. */ public List getXtnsn() { if (xtnsn == null) { xtnsn = new ArrayList<>(); } return this.xtnsn; } @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 othrIndvInvstr list. * @see #getOthrIndvInvstr() * */ public ISATransfer24 addOthrIndvInvstr(IndividualPerson8 othrIndvInvstr) { getOthrIndvInvstr().add(othrIndvInvstr); return this; } /** * Adds a new item to the othrCorpInvstr list. * @see #getOthrCorpInvstr() * */ public ISATransfer24 addOthrCorpInvstr(Organisation21 othrCorpInvstr) { getOthrCorpInvstr().add(othrCorpInvstr); return this; } /** * Adds a new item to the intrmyInf list. * @see #getIntrmyInf() * */ public ISATransfer24 addIntrmyInf(Intermediary34 intrmyInf) { getIntrmyInf().add(intrmyInf); return this; } /** * Adds a new item to the xtnsn list. * @see #getXtnsn() * */ public ISATransfer24 addXtnsn(Extension1 xtnsn) { getXtnsn().add(xtnsn); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy