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

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


/**
 * The DTCCCASTSD1 message extends ISO Corporate Action Instruction Statement Report message with DTCC corporate action elements not covered in the standard message.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DTCCCASTSD1V03", propOrder = {
    "evtBalDtls",
    "ttlInstdBalOptnBalDtls",
    "ttlInstdBalOptnInstrDtls",
    "ttlInstdBalOptnPrtctInstrDtls"
})
public class DTCCCASTSD1V03 {

    @XmlElement(name = "EvtBalDtls")
    protected CorporateActionBalanceSD5 evtBalDtls;
    @XmlElement(name = "TtlInstdBalOptnBalDtls")
    protected List ttlInstdBalOptnBalDtls;
    @XmlElement(name = "TtlInstdBalOptnInstrDtls")
    protected List ttlInstdBalOptnInstrDtls;
    @XmlElement(name = "TtlInstdBalOptnPrtctInstrDtls")
    protected List ttlInstdBalOptnPrtctInstrDtls;

    /**
     * Gets the value of the evtBalDtls property.
     * 
     * @return
     *     possible object is
     *     {@link CorporateActionBalanceSD5 }
     *     
     */
    public CorporateActionBalanceSD5 getEvtBalDtls() {
        return evtBalDtls;
    }

    /**
     * Sets the value of the evtBalDtls property.
     * 
     * @param value
     *     allowed object is
     *     {@link CorporateActionBalanceSD5 }
     *     
     */
    public DTCCCASTSD1V03 setEvtBalDtls(CorporateActionBalanceSD5 value) {
        this.evtBalDtls = value;
        return this;
    }

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

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

     *    getTtlInstdBalOptnBalDtls().add(newItem);
     * 
* * *

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

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

     *    getTtlInstdBalOptnInstrDtls().add(newItem);
     * 
* * *

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

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

     *    getTtlInstdBalOptnPrtctInstrDtls().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CorporateActionInstructedBalanceOptionProtectInstructionSD3 } * * */ public List getTtlInstdBalOptnPrtctInstrDtls() { if (ttlInstdBalOptnPrtctInstrDtls == null) { ttlInstdBalOptnPrtctInstrDtls = new ArrayList(); } return this.ttlInstdBalOptnPrtctInstrDtls; } @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 ttlInstdBalOptnBalDtls list. * @see #getTtlInstdBalOptnBalDtls() * */ public DTCCCASTSD1V03 addTtlInstdBalOptnBalDtls(CorporateActionInstructedBalanceOptionBalanceSD3 ttlInstdBalOptnBalDtls) { getTtlInstdBalOptnBalDtls().add(ttlInstdBalOptnBalDtls); return this; } /** * Adds a new item to the ttlInstdBalOptnInstrDtls list. * @see #getTtlInstdBalOptnInstrDtls() * */ public DTCCCASTSD1V03 addTtlInstdBalOptnInstrDtls(CorporateActionInstructedBalanceOptionInstructionSD3 ttlInstdBalOptnInstrDtls) { getTtlInstdBalOptnInstrDtls().add(ttlInstdBalOptnInstrDtls); return this; } /** * Adds a new item to the ttlInstdBalOptnPrtctInstrDtls list. * @see #getTtlInstdBalOptnPrtctInstrDtls() * */ public DTCCCASTSD1V03 addTtlInstdBalOptnPrtctInstrDtls(CorporateActionInstructedBalanceOptionProtectInstructionSD3 ttlInstdBalOptnPrtctInstrDtls) { getTtlInstdBalOptnPrtctInstrDtls().add(ttlInstdBalOptnPrtctInstrDtls); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy