All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.finmath.smartcontract.product.xml.NoTouchLowerBarrierObservation 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for NoTouchLowerBarrierObservation complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="NoTouchLowerBarrierObservation">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <sequence>
 *           <element name="triggerRate" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *           <element name="quotedCurrencyPair" type="{http://www.fpml.org/FpML-5/confirmation}QuotedCurrencyPair"/>
 *           <element name="minimumObservedRate" type="{http://www.fpml.org/FpML-5/confirmation}ObservedRate" minOccurs="0"/>
 *         </sequence>
 *         <sequence>
 *           <element name="triggerPrice" type="{http://www.fpml.org/FpML-5/confirmation}PositiveMoney"/>
 *           <element name="minimumObservedPrice" type="{http://www.fpml.org/FpML-5/confirmation}ObservedPrice" minOccurs="0"/>
 *         </sequence>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NoTouchLowerBarrierObservation", propOrder = { "triggerRate", "quotedCurrencyPair", "minimumObservedRate", "triggerPrice", "minimumObservedPrice" }) public class NoTouchLowerBarrierObservation { protected BigDecimal triggerRate; protected QuotedCurrencyPair quotedCurrencyPair; protected ObservedRate minimumObservedRate; protected PositiveMoney triggerPrice; protected ObservedPrice minimumObservedPrice; /** * Gets the value of the triggerRate property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getTriggerRate() { return triggerRate; } /** * Sets the value of the triggerRate property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setTriggerRate(BigDecimal value) { this.triggerRate = value; } /** * Gets the value of the quotedCurrencyPair property. * * @return * possible object is * {@link QuotedCurrencyPair } * */ public QuotedCurrencyPair getQuotedCurrencyPair() { return quotedCurrencyPair; } /** * Sets the value of the quotedCurrencyPair property. * * @param value * allowed object is * {@link QuotedCurrencyPair } * */ public void setQuotedCurrencyPair(QuotedCurrencyPair value) { this.quotedCurrencyPair = value; } /** * Gets the value of the minimumObservedRate property. * * @return * possible object is * {@link ObservedRate } * */ public ObservedRate getMinimumObservedRate() { return minimumObservedRate; } /** * Sets the value of the minimumObservedRate property. * * @param value * allowed object is * {@link ObservedRate } * */ public void setMinimumObservedRate(ObservedRate value) { this.minimumObservedRate = value; } /** * Gets the value of the triggerPrice property. * * @return * possible object is * {@link PositiveMoney } * */ public PositiveMoney getTriggerPrice() { return triggerPrice; } /** * Sets the value of the triggerPrice property. * * @param value * allowed object is * {@link PositiveMoney } * */ public void setTriggerPrice(PositiveMoney value) { this.triggerPrice = value; } /** * Gets the value of the minimumObservedPrice property. * * @return * possible object is * {@link ObservedPrice } * */ public ObservedPrice getMinimumObservedPrice() { return minimumObservedPrice; } /** * Sets the value of the minimumObservedPrice property. * * @param value * allowed object is * {@link ObservedPrice } * */ public void setMinimumObservedPrice(ObservedPrice value) { this.minimumObservedPrice = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy