org.fpml.fpml_5.confirmation.FxRateSourceFixing Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.04.04 at 04:56:21 PM UTC
//
package org.fpml.fpml_5.confirmation;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Describes a rate source to be fixed and the date the fixing occurs
*
* Java class for FxRateSourceFixing complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FxRateSourceFixing">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="settlementRateSource" type="{http://www.fpml.org/FpML-5/confirmation}FxSettlementRateSource"/>
* <element name="fixingDate" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableDate"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FxRateSourceFixing", propOrder = {
"settlementRateSource",
"fixingDate"
})
public class FxRateSourceFixing {
@XmlElement(required = true)
protected FxSettlementRateSource settlementRateSource;
@XmlElement(required = true)
protected AdjustableDate fixingDate;
/**
* Gets the value of the settlementRateSource property.
*
* @return
* possible object is
* {@link FxSettlementRateSource }
*
*/
public FxSettlementRateSource getSettlementRateSource() {
return settlementRateSource;
}
/**
* Sets the value of the settlementRateSource property.
*
* @param value
* allowed object is
* {@link FxSettlementRateSource }
*
*/
public void setSettlementRateSource(FxSettlementRateSource value) {
this.settlementRateSource = value;
}
/**
* Gets the value of the fixingDate property.
*
* @return
* possible object is
* {@link AdjustableDate }
*
*/
public AdjustableDate getFixingDate() {
return fixingDate;
}
/**
* Sets the value of the fixingDate property.
*
* @param value
* allowed object is
* {@link AdjustableDate }
*
*/
public void setFixingDate(AdjustableDate value) {
this.fixingDate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy