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

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

The newest version!

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

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


/**
 * Details of the securities trade.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SecuritiesTradeDetails3", propOrder = {
    "plcOfTrad",
    "plcOfClr",
    "tradDt",
    "opngSttlmDt",
    "dealPric",
    "nbOfDaysAcrd",
    "rptg",
    "tradTxCond",
    "invstrCpcty",
    "tradOrgtrRole",
    "ccyToBuyOrSell",
    "affirmSts",
    "mtchgSts",
    "sttlmInstrPrcgAddtlDtls",
    "fxAddtlDtls"
})
public class SecuritiesTradeDetails3 {

    @XmlElement(name = "PlcOfTrad")
    protected MarketIdentification4 plcOfTrad;
    @XmlElement(name = "PlcOfClr")
    protected String plcOfClr;
    @XmlElement(name = "TradDt")
    protected TradeDate1Choice tradDt;
    @XmlElement(name = "OpngSttlmDt", required = true)
    protected DateAndDateTimeChoice opngSttlmDt;
    @XmlElement(name = "DealPric")
    protected Price2 dealPric;
    @XmlElement(name = "NbOfDaysAcrd")
    protected BigDecimal nbOfDaysAcrd;
    @XmlElement(name = "Rptg")
    protected List rptg;
    @XmlElement(name = "TradTxCond")
    protected List tradTxCond;
    @XmlElement(name = "InvstrCpcty")
    protected InvestorCapacity1Choice invstrCpcty;
    @XmlElement(name = "TradOrgtrRole")
    protected TradeOriginator1Choice tradOrgtrRole;
    @XmlElement(name = "CcyToBuyOrSell")
    protected CurrencyToBuyOrSell1Choice ccyToBuyOrSell;
    @XmlElement(name = "AffirmSts")
    protected AffirmationStatus1Choice affirmSts;
    @XmlElement(name = "MtchgSts")
    protected MatchingStatus1Choice mtchgSts;
    @XmlElement(name = "SttlmInstrPrcgAddtlDtls")
    protected String sttlmInstrPrcgAddtlDtls;
    @XmlElement(name = "FxAddtlDtls")
    protected String fxAddtlDtls;

    /**
     * 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 SecuritiesTradeDetails3 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 SecuritiesTradeDetails3 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 SecuritiesTradeDetails3 setTradDt(TradeDate1Choice value) {
        this.tradDt = value;
        return this;
    }

    /**
     * Gets the value of the opngSttlmDt property.
     * 
     * @return
     *     possible object is
     *     {@link DateAndDateTimeChoice }
     *     
     */
    public DateAndDateTimeChoice getOpngSttlmDt() {
        return opngSttlmDt;
    }

    /**
     * Sets the value of the opngSttlmDt property.
     * 
     * @param value
     *     allowed object is
     *     {@link DateAndDateTimeChoice }
     *     
     */
    public SecuritiesTradeDetails3 setOpngSttlmDt(DateAndDateTimeChoice value) {
        this.opngSttlmDt = 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 SecuritiesTradeDetails3 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 SecuritiesTradeDetails3 setNbOfDaysAcrd(BigDecimal value) {
        this.nbOfDaysAcrd = 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 Jakarta XML Binding object. * This is why there is not a {@code 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 Reporting2Choice } * * * @return * The value of the rptg property. */ 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 Jakarta XML Binding object. * This is why there is not a {@code 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 } * * * @return * The value of the tradTxCond property. */ public List getTradTxCond() { if (tradTxCond == null) { tradTxCond = new ArrayList<>(); } return this.tradTxCond; } /** * Gets the value of the invstrCpcty property. * * @return * possible object is * {@link InvestorCapacity1Choice } * */ public InvestorCapacity1Choice getInvstrCpcty() { return invstrCpcty; } /** * Sets the value of the invstrCpcty property. * * @param value * allowed object is * {@link InvestorCapacity1Choice } * */ public SecuritiesTradeDetails3 setInvstrCpcty(InvestorCapacity1Choice value) { this.invstrCpcty = value; return this; } /** * Gets the value of the tradOrgtrRole property. * * @return * possible object is * {@link TradeOriginator1Choice } * */ public TradeOriginator1Choice getTradOrgtrRole() { return tradOrgtrRole; } /** * Sets the value of the tradOrgtrRole property. * * @param value * allowed object is * {@link TradeOriginator1Choice } * */ public SecuritiesTradeDetails3 setTradOrgtrRole(TradeOriginator1Choice value) { this.tradOrgtrRole = value; return this; } /** * Gets the value of the ccyToBuyOrSell property. * * @return * possible object is * {@link CurrencyToBuyOrSell1Choice } * */ public CurrencyToBuyOrSell1Choice getCcyToBuyOrSell() { return ccyToBuyOrSell; } /** * Sets the value of the ccyToBuyOrSell property. * * @param value * allowed object is * {@link CurrencyToBuyOrSell1Choice } * */ public SecuritiesTradeDetails3 setCcyToBuyOrSell(CurrencyToBuyOrSell1Choice value) { this.ccyToBuyOrSell = value; return this; } /** * Gets the value of the affirmSts property. * * @return * possible object is * {@link AffirmationStatus1Choice } * */ public AffirmationStatus1Choice getAffirmSts() { return affirmSts; } /** * Sets the value of the affirmSts property. * * @param value * allowed object is * {@link AffirmationStatus1Choice } * */ public SecuritiesTradeDetails3 setAffirmSts(AffirmationStatus1Choice value) { this.affirmSts = value; return this; } /** * Gets the value of the mtchgSts property. * * @return * possible object is * {@link MatchingStatus1Choice } * */ public MatchingStatus1Choice getMtchgSts() { return mtchgSts; } /** * Sets the value of the mtchgSts property. * * @param value * allowed object is * {@link MatchingStatus1Choice } * */ public SecuritiesTradeDetails3 setMtchgSts(MatchingStatus1Choice value) { this.mtchgSts = value; return this; } /** * Gets the value of the sttlmInstrPrcgAddtlDtls property. * * @return * possible object is * {@link String } * */ public String getSttlmInstrPrcgAddtlDtls() { return sttlmInstrPrcgAddtlDtls; } /** * Sets the value of the sttlmInstrPrcgAddtlDtls property. * * @param value * allowed object is * {@link String } * */ public SecuritiesTradeDetails3 setSttlmInstrPrcgAddtlDtls(String value) { this.sttlmInstrPrcgAddtlDtls = value; return this; } /** * Gets the value of the fxAddtlDtls property. * * @return * possible object is * {@link String } * */ public String getFxAddtlDtls() { return fxAddtlDtls; } /** * Sets the value of the fxAddtlDtls property. * * @param value * allowed object is * {@link String } * */ public SecuritiesTradeDetails3 setFxAddtlDtls(String value) { this.fxAddtlDtls = 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 rptg list. * @see #getRptg() * */ public SecuritiesTradeDetails3 addRptg(Reporting2Choice rptg) { getRptg().add(rptg); return this; } /** * Adds a new item to the tradTxCond list. * @see #getTradTxCond() * */ public SecuritiesTradeDetails3 addTradTxCond(TradeTransactionCondition1Choice tradTxCond) { getTradTxCond().add(tradTxCond); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy