net.finmath.smartcontract.product.xml.FxLinkedNotionalAmount Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.12.05 at 10:53:57 AM CET
//
package net.finmath.smartcontract.product.xml;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* A type to describe the cashflow representation for fx linked notionals.
*
*
* Java class for FxLinkedNotionalAmount complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FxLinkedNotionalAmount">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="resetDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="adjustedFxSpotFixingDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="observedFxSpotRate" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="notionalAmount" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FxLinkedNotionalAmount", propOrder = {
"resetDate",
"adjustedFxSpotFixingDate",
"observedFxSpotRate",
"notionalAmount"
})
public class FxLinkedNotionalAmount {
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar resetDate;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar adjustedFxSpotFixingDate;
protected BigDecimal observedFxSpotRate;
protected BigDecimal notionalAmount;
/**
* Gets the value of the resetDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getResetDate() {
return resetDate;
}
/**
* Sets the value of the resetDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setResetDate(XMLGregorianCalendar value) {
this.resetDate = value;
}
/**
* Gets the value of the adjustedFxSpotFixingDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getAdjustedFxSpotFixingDate() {
return adjustedFxSpotFixingDate;
}
/**
* Sets the value of the adjustedFxSpotFixingDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setAdjustedFxSpotFixingDate(XMLGregorianCalendar value) {
this.adjustedFxSpotFixingDate = value;
}
/**
* Gets the value of the observedFxSpotRate property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getObservedFxSpotRate() {
return observedFxSpotRate;
}
/**
* Sets the value of the observedFxSpotRate property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setObservedFxSpotRate(BigDecimal value) {
this.observedFxSpotRate = value;
}
/**
* Gets the value of the notionalAmount property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getNotionalAmount() {
return notionalAmount;
}
/**
* Sets the value of the notionalAmount property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setNotionalAmount(BigDecimal value) {
this.notionalAmount = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy