net.finmath.smartcontract.product.xml.FxMultipleExercise 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Describes the limits on the size of notional when multiple exercise is
* allowed.
*
*
* Java class for FxMultipleExercise complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FxMultipleExercise">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="minimumNotionalAmount" type="{http://www.fpml.org/FpML-5/confirmation}NonNegativeMoney" minOccurs="0"/>
* <element name="maximumNotionalAmount" type="{http://www.fpml.org/FpML-5/confirmation}NonNegativeMoney" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FxMultipleExercise", propOrder = {
"minimumNotionalAmount",
"maximumNotionalAmount"
})
public class FxMultipleExercise {
protected NonNegativeMoney minimumNotionalAmount;
protected NonNegativeMoney maximumNotionalAmount;
/**
* Gets the value of the minimumNotionalAmount property.
*
* @return
* possible object is
* {@link NonNegativeMoney }
*
*/
public NonNegativeMoney getMinimumNotionalAmount() {
return minimumNotionalAmount;
}
/**
* Sets the value of the minimumNotionalAmount property.
*
* @param value
* allowed object is
* {@link NonNegativeMoney }
*
*/
public void setMinimumNotionalAmount(NonNegativeMoney value) {
this.minimumNotionalAmount = value;
}
/**
* Gets the value of the maximumNotionalAmount property.
*
* @return
* possible object is
* {@link NonNegativeMoney }
*
*/
public NonNegativeMoney getMaximumNotionalAmount() {
return maximumNotionalAmount;
}
/**
* Sets the value of the maximumNotionalAmount property.
*
* @param value
* allowed object is
* {@link NonNegativeMoney }
*
*/
public void setMaximumNotionalAmount(NonNegativeMoney value) {
this.maximumNotionalAmount = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy