com.prowidesoftware.swift.model.mx.dic.CreateNonDeliverableForwardValuationV02 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
package com.prowidesoftware.swift.model.mx.dic;
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
* The CreateNonDeliverableForwardValuation message is sent by a participant to a central system or to a counterparty to notify the valuation of a non deliverable trade.
* Usage
* The two trading parties will both send similar notifications to the central settlement system and the central settlement system will send notifications to both.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateNonDeliverableForwardValuationV02", propOrder = {
"tradInf",
"tradgSdId",
"ctrPtySdId",
"tradAmts",
"valtnInf",
"valtnRate"
})
public class CreateNonDeliverableForwardValuationV02 {
@XmlElement(name = "TradInf", required = true)
protected TradeAgreement1 tradInf;
@XmlElement(name = "TradgSdId", required = true)
protected TradePartyIdentification3 tradgSdId;
@XmlElement(name = "CtrPtySdId", required = true)
protected TradePartyIdentification3 ctrPtySdId;
@XmlElement(name = "TradAmts", required = true)
protected AmountsAndValueDate1 tradAmts;
@XmlElement(name = "ValtnInf", required = true)
protected ValuationData2 valtnInf;
@XmlElement(name = "ValtnRate", required = true)
protected AgreedRate1 valtnRate;
/**
* Gets the value of the tradInf property.
*
* @return
* possible object is
* {@link TradeAgreement1 }
*
*/
public TradeAgreement1 getTradInf() {
return tradInf;
}
/**
* Sets the value of the tradInf property.
*
* @param value
* allowed object is
* {@link TradeAgreement1 }
*
*/
public CreateNonDeliverableForwardValuationV02 setTradInf(TradeAgreement1 value) {
this.tradInf = value;
return this;
}
/**
* Gets the value of the tradgSdId property.
*
* @return
* possible object is
* {@link TradePartyIdentification3 }
*
*/
public TradePartyIdentification3 getTradgSdId() {
return tradgSdId;
}
/**
* Sets the value of the tradgSdId property.
*
* @param value
* allowed object is
* {@link TradePartyIdentification3 }
*
*/
public CreateNonDeliverableForwardValuationV02 setTradgSdId(TradePartyIdentification3 value) {
this.tradgSdId = value;
return this;
}
/**
* Gets the value of the ctrPtySdId property.
*
* @return
* possible object is
* {@link TradePartyIdentification3 }
*
*/
public TradePartyIdentification3 getCtrPtySdId() {
return ctrPtySdId;
}
/**
* Sets the value of the ctrPtySdId property.
*
* @param value
* allowed object is
* {@link TradePartyIdentification3 }
*
*/
public CreateNonDeliverableForwardValuationV02 setCtrPtySdId(TradePartyIdentification3 value) {
this.ctrPtySdId = value;
return this;
}
/**
* Gets the value of the tradAmts property.
*
* @return
* possible object is
* {@link AmountsAndValueDate1 }
*
*/
public AmountsAndValueDate1 getTradAmts() {
return tradAmts;
}
/**
* Sets the value of the tradAmts property.
*
* @param value
* allowed object is
* {@link AmountsAndValueDate1 }
*
*/
public CreateNonDeliverableForwardValuationV02 setTradAmts(AmountsAndValueDate1 value) {
this.tradAmts = value;
return this;
}
/**
* Gets the value of the valtnInf property.
*
* @return
* possible object is
* {@link ValuationData2 }
*
*/
public ValuationData2 getValtnInf() {
return valtnInf;
}
/**
* Sets the value of the valtnInf property.
*
* @param value
* allowed object is
* {@link ValuationData2 }
*
*/
public CreateNonDeliverableForwardValuationV02 setValtnInf(ValuationData2 value) {
this.valtnInf = value;
return this;
}
/**
* Gets the value of the valtnRate property.
*
* @return
* possible object is
* {@link AgreedRate1 }
*
*/
public AgreedRate1 getValtnRate() {
return valtnRate;
}
/**
* Sets the value of the valtnRate property.
*
* @param value
* allowed object is
* {@link AgreedRate1 }
*
*/
public CreateNonDeliverableForwardValuationV02 setValtnRate(AgreedRate1 value) {
this.valtnRate = 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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy