
com.prowidesoftware.swift.model.mx.dic.NonDeliverableForwardValuationConditions1 Maven / Gradle / Ivy
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
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;
/**
* Set of parameters used to calculate the fixing rate to be applied to a non-deliverable agreement.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NonDeliverableForwardValuationConditions1", propOrder = {
"sttlmCcy",
"valtnDt",
"addtlValtnInf",
"sttlmPty"
})
public class NonDeliverableForwardValuationConditions1 {
@XmlElement(name = "SttlmCcy", required = true)
protected String sttlmCcy;
@XmlElement(name = "ValtnDt", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valtnDt;
@XmlElement(name = "AddtlValtnInf")
protected String addtlValtnInf;
@XmlElement(name = "SttlmPty")
protected PartyIdentification7Choice sttlmPty;
/**
* Gets the value of the sttlmCcy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSttlmCcy() {
return sttlmCcy;
}
/**
* Sets the value of the sttlmCcy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public NonDeliverableForwardValuationConditions1 setSttlmCcy(String value) {
this.sttlmCcy = value;
return this;
}
/**
* Gets the value of the valtnDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getValtnDt() {
return valtnDt;
}
/**
* Sets the value of the valtnDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public NonDeliverableForwardValuationConditions1 setValtnDt(XMLGregorianCalendar value) {
this.valtnDt = value;
return this;
}
/**
* Gets the value of the addtlValtnInf property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddtlValtnInf() {
return addtlValtnInf;
}
/**
* Sets the value of the addtlValtnInf property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public NonDeliverableForwardValuationConditions1 setAddtlValtnInf(String value) {
this.addtlValtnInf = value;
return this;
}
/**
* Gets the value of the sttlmPty property.
*
* @return
* possible object is
* {@link PartyIdentification7Choice }
*
*/
public PartyIdentification7Choice getSttlmPty() {
return sttlmPty;
}
/**
* Sets the value of the sttlmPty property.
*
* @param value
* allowed object is
* {@link PartyIdentification7Choice }
*
*/
public NonDeliverableForwardValuationConditions1 setSttlmPty(PartyIdentification7Choice value) {
this.sttlmPty = 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