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

net.finmath.smartcontract.product.xml.SingleUnderlyer Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
//
// 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.JAXBElement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElementRef;
import jakarta.xml.bind.annotation.XmlType;


/**
 * A type describing a single underlyer
 * 
 * 

Java class for SingleUnderlyer complex type. * *

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

 * <complexType name="SingleUnderlyer">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.fpml.org/FpML-5/confirmation}underlyingAsset"/>
 *         <element name="openUnits" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
 *         <element name="dividendPayout" type="{http://www.fpml.org/FpML-5/confirmation}DividendPayout" minOccurs="0"/>
 *         <element name="couponPayment" type="{http://www.fpml.org/FpML-5/confirmation}PendingPayment" minOccurs="0"/>
 *         <element name="averageDailyTradingVolume" type="{http://www.fpml.org/FpML-5/confirmation}AverageDailyTradingVolumeLimit" minOccurs="0"/>
 *         <element name="depositoryReceipt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SingleUnderlyer", propOrder = { "underlyingAsset", "openUnits", "dividendPayout", "couponPayment", "averageDailyTradingVolume", "depositoryReceipt" }) public class SingleUnderlyer { @XmlElementRef(name = "underlyingAsset", namespace = "http://www.fpml.org/FpML-5/confirmation", type = JAXBElement.class) protected JAXBElement underlyingAsset; protected BigDecimal openUnits; protected DividendPayout dividendPayout; protected PendingPayment couponPayment; protected AverageDailyTradingVolumeLimit averageDailyTradingVolume; protected Boolean depositoryReceipt; /** * Gets the value of the underlyingAsset property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link Index }{@code >} * {@link JAXBElement }{@code <}{@link Mortgage }{@code >} * {@link JAXBElement }{@code <}{@link Cash }{@code >} * {@link JAXBElement }{@code <}{@link EquityAsset }{@code >} * {@link JAXBElement }{@code <}{@link Future }{@code >} * {@link JAXBElement }{@code <}{@link Bond }{@code >} * {@link JAXBElement }{@code <}{@link ConvertibleBond }{@code >} * {@link JAXBElement }{@code <}{@link Basket }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeTradedFund }{@code >} * {@link JAXBElement }{@code <}{@link Loan }{@code >} * {@link JAXBElement }{@code <}{@link MutualFund }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeTradedOption }{@code >} * {@link JAXBElement }{@code <}{@link Commodity }{@code >} * {@link JAXBElement }{@code <}{@link Asset }{@code >} * */ public JAXBElement getUnderlyingAsset() { return underlyingAsset; } /** * Sets the value of the underlyingAsset property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link Index }{@code >} * {@link JAXBElement }{@code <}{@link Mortgage }{@code >} * {@link JAXBElement }{@code <}{@link Cash }{@code >} * {@link JAXBElement }{@code <}{@link EquityAsset }{@code >} * {@link JAXBElement }{@code <}{@link Future }{@code >} * {@link JAXBElement }{@code <}{@link Bond }{@code >} * {@link JAXBElement }{@code <}{@link ConvertibleBond }{@code >} * {@link JAXBElement }{@code <}{@link Basket }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeTradedFund }{@code >} * {@link JAXBElement }{@code <}{@link Loan }{@code >} * {@link JAXBElement }{@code <}{@link MutualFund }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeTradedOption }{@code >} * {@link JAXBElement }{@code <}{@link Commodity }{@code >} * {@link JAXBElement }{@code <}{@link Asset }{@code >} * */ public void setUnderlyingAsset(JAXBElement value) { this.underlyingAsset = value; } /** * Gets the value of the openUnits property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getOpenUnits() { return openUnits; } /** * Sets the value of the openUnits property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setOpenUnits(BigDecimal value) { this.openUnits = value; } /** * Gets the value of the dividendPayout property. * * @return * possible object is * {@link DividendPayout } * */ public DividendPayout getDividendPayout() { return dividendPayout; } /** * Sets the value of the dividendPayout property. * * @param value * allowed object is * {@link DividendPayout } * */ public void setDividendPayout(DividendPayout value) { this.dividendPayout = value; } /** * Gets the value of the couponPayment property. * * @return * possible object is * {@link PendingPayment } * */ public PendingPayment getCouponPayment() { return couponPayment; } /** * Sets the value of the couponPayment property. * * @param value * allowed object is * {@link PendingPayment } * */ public void setCouponPayment(PendingPayment value) { this.couponPayment = value; } /** * Gets the value of the averageDailyTradingVolume property. * * @return * possible object is * {@link AverageDailyTradingVolumeLimit } * */ public AverageDailyTradingVolumeLimit getAverageDailyTradingVolume() { return averageDailyTradingVolume; } /** * Sets the value of the averageDailyTradingVolume property. * * @param value * allowed object is * {@link AverageDailyTradingVolumeLimit } * */ public void setAverageDailyTradingVolume(AverageDailyTradingVolumeLimit value) { this.averageDailyTradingVolume = value; } /** * Gets the value of the depositoryReceipt property. * * @return * possible object is * {@link Boolean } * */ public Boolean isDepositoryReceipt() { return depositoryReceipt; } /** * Sets the value of the depositoryReceipt property. * * @param value * allowed object is * {@link Boolean } * */ public void setDepositoryReceipt(Boolean value) { this.depositoryReceipt = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy