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

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


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;


/**
 * Scope
 * An account servicer, for example, a transfer agent sends the StatementOfInvestmentFundTransactions message to the account owner, for example, an investment manager or its authorised representative to provide detailed transactions (increases and decreases) of holdings which occurred during a specified period of time.
 * Usage
 * The StatementOfInvestmentFundTransactions message is used to list the holdings transactions of a single (master) account or several sub-accounts.
 * This message should be used at a frequency agreed bi-laterally between the account servicer and the account owner.
 * This message must not be used in place of confirmation messages.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StatementOfInvestmentFundTransactionsV02", propOrder = {
    "msgId",
    "prvsRef",
    "rltdRef",
    "msgPgntn",
    "stmtGnlDtls",
    "invstmtAcctDtls",
    "txOnAcct",
    "subAcctDtls",
    "xtnsn"
})
public class StatementOfInvestmentFundTransactionsV02 {

    @XmlElement(name = "MsgId", required = true)
    protected MessageIdentification1 msgId;
    @XmlElement(name = "PrvsRef")
    protected List prvsRef;
    @XmlElement(name = "RltdRef")
    protected List rltdRef;
    @XmlElement(name = "MsgPgntn", required = true)
    protected Pagination msgPgntn;
    @XmlElement(name = "StmtGnlDtls", required = true)
    protected Statement8 stmtGnlDtls;
    @XmlElement(name = "InvstmtAcctDtls", required = true)
    protected InvestmentAccount25 invstmtAcctDtls;
    @XmlElement(name = "TxOnAcct")
    protected List txOnAcct;
    @XmlElement(name = "SubAcctDtls")
    protected List subAcctDtls;
    @XmlElement(name = "Xtnsn")
    protected List xtnsn;

    /**
     * Gets the value of the msgId property.
     * 
     * @return
     *     possible object is
     *     {@link MessageIdentification1 }
     *     
     */
    public MessageIdentification1 getMsgId() {
        return msgId;
    }

    /**
     * Sets the value of the msgId property.
     * 
     * @param value
     *     allowed object is
     *     {@link MessageIdentification1 }
     *     
     */
    public StatementOfInvestmentFundTransactionsV02 setMsgId(MessageIdentification1 value) {
        this.msgId = value;
        return this;
    }

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

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

     *    getPrvsRef().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AdditionalReference2 } * * */ public List getPrvsRef() { if (prvsRef == null) { prvsRef = new ArrayList(); } return this.prvsRef; } /** * Gets the value of the rltdRef 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 rltdRef property. * *

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

     *    getRltdRef().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AdditionalReference2 } * * */ public List getRltdRef() { if (rltdRef == null) { rltdRef = new ArrayList(); } return this.rltdRef; } /** * Gets the value of the msgPgntn property. * * @return * possible object is * {@link Pagination } * */ public Pagination getMsgPgntn() { return msgPgntn; } /** * Sets the value of the msgPgntn property. * * @param value * allowed object is * {@link Pagination } * */ public StatementOfInvestmentFundTransactionsV02 setMsgPgntn(Pagination value) { this.msgPgntn = value; return this; } /** * Gets the value of the stmtGnlDtls property. * * @return * possible object is * {@link Statement8 } * */ public Statement8 getStmtGnlDtls() { return stmtGnlDtls; } /** * Sets the value of the stmtGnlDtls property. * * @param value * allowed object is * {@link Statement8 } * */ public StatementOfInvestmentFundTransactionsV02 setStmtGnlDtls(Statement8 value) { this.stmtGnlDtls = value; return this; } /** * Gets the value of the invstmtAcctDtls property. * * @return * possible object is * {@link InvestmentAccount25 } * */ public InvestmentAccount25 getInvstmtAcctDtls() { return invstmtAcctDtls; } /** * Sets the value of the invstmtAcctDtls property. * * @param value * allowed object is * {@link InvestmentAccount25 } * */ public StatementOfInvestmentFundTransactionsV02 setInvstmtAcctDtls(InvestmentAccount25 value) { this.invstmtAcctDtls = value; return this; } /** * Gets the value of the txOnAcct 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 txOnAcct property. * *

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

     *    getTxOnAcct().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link InvestmentFundTransactionsByFund2 } * * */ public List getTxOnAcct() { if (txOnAcct == null) { txOnAcct = new ArrayList(); } return this.txOnAcct; } /** * Gets the value of the subAcctDtls 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 subAcctDtls property. * *

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

     *    getSubAcctDtls().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SubAccountIdentification6 } * * */ public List getSubAcctDtls() { if (subAcctDtls == null) { subAcctDtls = new ArrayList(); } return this.subAcctDtls; } /** * 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 JAXB object. * This is why there is not a 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 } * * */ 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 prvsRef list. * @see #getPrvsRef() * */ public StatementOfInvestmentFundTransactionsV02 addPrvsRef(AdditionalReference2 prvsRef) { getPrvsRef().add(prvsRef); return this; } /** * Adds a new item to the rltdRef list. * @see #getRltdRef() * */ public StatementOfInvestmentFundTransactionsV02 addRltdRef(AdditionalReference2 rltdRef) { getRltdRef().add(rltdRef); return this; } /** * Adds a new item to the txOnAcct list. * @see #getTxOnAcct() * */ public StatementOfInvestmentFundTransactionsV02 addTxOnAcct(InvestmentFundTransactionsByFund2 txOnAcct) { getTxOnAcct().add(txOnAcct); return this; } /** * Adds a new item to the subAcctDtls list. * @see #getSubAcctDtls() * */ public StatementOfInvestmentFundTransactionsV02 addSubAcctDtls(SubAccountIdentification6 subAcctDtls) { getSubAcctDtls().add(subAcctDtls); return this; } /** * Adds a new item to the xtnsn list. * @see #getXtnsn() * */ public StatementOfInvestmentFundTransactionsV02 addXtnsn(Extension1 xtnsn) { getXtnsn().add(xtnsn); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy