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

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

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

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

import java.math.BigDecimal;
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;


/**
 * Details of the securities trade.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SecuritiesTradeDetails8", propOrder = {
    "tradId",
    "collTxId",
    "acctOwnrTxId",
    "plcOfTrad",
    "plcOfClr",
    "tradDt",
    "sttlmDt",
    "lateDlvryDt",
    "dealPric",
    "nbOfDaysAcrd",
    "opngClsg",
    "rptg",
    "tradTxCond",
    "tpOfPric"
})
public class SecuritiesTradeDetails8 {

    @XmlElement(name = "TradId")
    protected List tradId;
    @XmlElement(name = "CollTxId")
    protected List collTxId;
    @XmlElement(name = "AcctOwnrTxId")
    protected List acctOwnrTxId;
    @XmlElement(name = "PlcOfTrad")
    protected MarketIdentification4 plcOfTrad;
    @XmlElement(name = "PlcOfClr")
    protected String plcOfClr;
    @XmlElement(name = "TradDt")
    protected TradeDate1Choice tradDt;
    @XmlElement(name = "SttlmDt", required = true)
    protected SettlementDate1Choice sttlmDt;
    @XmlElement(name = "LateDlvryDt")
    protected DateAndDateTimeChoice lateDlvryDt;
    @XmlElement(name = "DealPric")
    protected Price2 dealPric;
    @XmlElement(name = "NbOfDaysAcrd")
    protected BigDecimal nbOfDaysAcrd;
    @XmlElement(name = "OpngClsg")
    protected OpeningClosing1Choice opngClsg;
    @XmlElement(name = "Rptg")
    protected List rptg;
    @XmlElement(name = "TradTxCond")
    protected List tradTxCond;
    @XmlElement(name = "TpOfPric")
    protected TypeOfPrice3Choice tpOfPric;

    /**
     * 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 collTxId 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 collTxId property. * *

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

     *    getCollTxId().add(newItem);
     * 
* * *

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

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

     *    getAcctOwnrTxId().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getAcctOwnrTxId() { if (acctOwnrTxId == null) { acctOwnrTxId = new ArrayList(); } return this.acctOwnrTxId; } /** * Gets the value of the plcOfTrad property. * * @return * possible object is * {@link MarketIdentification4 } * */ public MarketIdentification4 getPlcOfTrad() { return plcOfTrad; } /** * Sets the value of the plcOfTrad property. * * @param value * allowed object is * {@link MarketIdentification4 } * */ public SecuritiesTradeDetails8 setPlcOfTrad(MarketIdentification4 value) { this.plcOfTrad = value; return this; } /** * Gets the value of the plcOfClr property. * * @return * possible object is * {@link String } * */ public String getPlcOfClr() { return plcOfClr; } /** * Sets the value of the plcOfClr property. * * @param value * allowed object is * {@link String } * */ public SecuritiesTradeDetails8 setPlcOfClr(String value) { this.plcOfClr = value; return this; } /** * Gets the value of the tradDt property. * * @return * possible object is * {@link TradeDate1Choice } * */ public TradeDate1Choice getTradDt() { return tradDt; } /** * Sets the value of the tradDt property. * * @param value * allowed object is * {@link TradeDate1Choice } * */ public SecuritiesTradeDetails8 setTradDt(TradeDate1Choice value) { this.tradDt = value; return this; } /** * Gets the value of the sttlmDt property. * * @return * possible object is * {@link SettlementDate1Choice } * */ public SettlementDate1Choice getSttlmDt() { return sttlmDt; } /** * Sets the value of the sttlmDt property. * * @param value * allowed object is * {@link SettlementDate1Choice } * */ public SecuritiesTradeDetails8 setSttlmDt(SettlementDate1Choice value) { this.sttlmDt = value; return this; } /** * Gets the value of the lateDlvryDt property. * * @return * possible object is * {@link DateAndDateTimeChoice } * */ public DateAndDateTimeChoice getLateDlvryDt() { return lateDlvryDt; } /** * Sets the value of the lateDlvryDt property. * * @param value * allowed object is * {@link DateAndDateTimeChoice } * */ public SecuritiesTradeDetails8 setLateDlvryDt(DateAndDateTimeChoice value) { this.lateDlvryDt = value; return this; } /** * Gets the value of the dealPric property. * * @return * possible object is * {@link Price2 } * */ public Price2 getDealPric() { return dealPric; } /** * Sets the value of the dealPric property. * * @param value * allowed object is * {@link Price2 } * */ public SecuritiesTradeDetails8 setDealPric(Price2 value) { this.dealPric = value; return this; } /** * Gets the value of the nbOfDaysAcrd property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getNbOfDaysAcrd() { return nbOfDaysAcrd; } /** * Sets the value of the nbOfDaysAcrd property. * * @param value * allowed object is * {@link BigDecimal } * */ public SecuritiesTradeDetails8 setNbOfDaysAcrd(BigDecimal value) { this.nbOfDaysAcrd = value; return this; } /** * Gets the value of the opngClsg property. * * @return * possible object is * {@link OpeningClosing1Choice } * */ public OpeningClosing1Choice getOpngClsg() { return opngClsg; } /** * Sets the value of the opngClsg property. * * @param value * allowed object is * {@link OpeningClosing1Choice } * */ public SecuritiesTradeDetails8 setOpngClsg(OpeningClosing1Choice value) { this.opngClsg = value; return this; } /** * Gets the value of the rptg 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 rptg property. * *

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

     *    getRptg().add(newItem);
     * 
* * *

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

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

     *    getTradTxCond().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TradeTransactionCondition1Choice } * * */ public List getTradTxCond() { if (tradTxCond == null) { tradTxCond = new ArrayList(); } return this.tradTxCond; } /** * Gets the value of the tpOfPric property. * * @return * possible object is * {@link TypeOfPrice3Choice } * */ public TypeOfPrice3Choice getTpOfPric() { return tpOfPric; } /** * Sets the value of the tpOfPric property. * * @param value * allowed object is * {@link TypeOfPrice3Choice } * */ public SecuritiesTradeDetails8 setTpOfPric(TypeOfPrice3Choice value) { this.tpOfPric = value; return this; } @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 SecuritiesTradeDetails8 addTradId(String tradId) { getTradId().add(tradId); return this; } /** * Adds a new item to the collTxId list. * @see #getCollTxId() * */ public SecuritiesTradeDetails8 addCollTxId(String collTxId) { getCollTxId().add(collTxId); return this; } /** * Adds a new item to the acctOwnrTxId list. * @see #getAcctOwnrTxId() * */ public SecuritiesTradeDetails8 addAcctOwnrTxId(String acctOwnrTxId) { getAcctOwnrTxId().add(acctOwnrTxId); return this; } /** * Adds a new item to the rptg list. * @see #getRptg() * */ public SecuritiesTradeDetails8 addRptg(Reporting1Choice rptg) { getRptg().add(rptg); return this; } /** * Adds a new item to the tradTxCond list. * @see #getTradTxCond() * */ public SecuritiesTradeDetails8 addTradTxCond(TradeTransactionCondition1Choice tradTxCond) { getTradTxCond().add(tradTxCond); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy