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

org.fpml.fpml_5.confirmation.LegAmount 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * A type describing the amount that will paid or received on each of the payment dates. This type is used to define both the Equity Amount and the Interest Amount.
 * 
 * 

Java class for LegAmount complex type. * *

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

 * <complexType name="LegAmount">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}CurrencyAndDeterminationMethod.model" minOccurs="0"/>
 *         <choice>
 *           <element name="referenceAmount" type="{http://www.fpml.org/FpML-5/confirmation}ReferenceAmount"/>
 *           <element name="formula" type="{http://www.fpml.org/FpML-5/confirmation}Formula"/>
 *           <element name="encodedDescription" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *         </choice>
 *         <element name="calculationDates" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableRelativeOrPeriodicDates" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LegAmount", propOrder = { "currency", "determinationMethod", "currencyReference", "referenceAmount", "formula", "encodedDescription", "calculationDates" }) @XmlSeeAlso({ ReturnSwapAmount.class }) public class LegAmount { protected IdentifiedCurrency currency; protected DeterminationMethod determinationMethod; protected IdentifiedCurrencyReference currencyReference; protected ReferenceAmount referenceAmount; protected Formula formula; protected byte[] encodedDescription; protected AdjustableRelativeOrPeriodicDates calculationDates; /** * Gets the value of the currency property. * * @return * possible object is * {@link IdentifiedCurrency } * */ public IdentifiedCurrency getCurrency() { return currency; } /** * Sets the value of the currency property. * * @param value * allowed object is * {@link IdentifiedCurrency } * */ public void setCurrency(IdentifiedCurrency value) { this.currency = value; } /** * Gets the value of the determinationMethod property. * * @return * possible object is * {@link DeterminationMethod } * */ public DeterminationMethod getDeterminationMethod() { return determinationMethod; } /** * Sets the value of the determinationMethod property. * * @param value * allowed object is * {@link DeterminationMethod } * */ public void setDeterminationMethod(DeterminationMethod value) { this.determinationMethod = value; } /** * Gets the value of the currencyReference property. * * @return * possible object is * {@link IdentifiedCurrencyReference } * */ public IdentifiedCurrencyReference getCurrencyReference() { return currencyReference; } /** * Sets the value of the currencyReference property. * * @param value * allowed object is * {@link IdentifiedCurrencyReference } * */ public void setCurrencyReference(IdentifiedCurrencyReference value) { this.currencyReference = value; } /** * Gets the value of the referenceAmount property. * * @return * possible object is * {@link ReferenceAmount } * */ public ReferenceAmount getReferenceAmount() { return referenceAmount; } /** * Sets the value of the referenceAmount property. * * @param value * allowed object is * {@link ReferenceAmount } * */ public void setReferenceAmount(ReferenceAmount value) { this.referenceAmount = value; } /** * Gets the value of the formula property. * * @return * possible object is * {@link Formula } * */ public Formula getFormula() { return formula; } /** * Sets the value of the formula property. * * @param value * allowed object is * {@link Formula } * */ public void setFormula(Formula value) { this.formula = value; } /** * Gets the value of the encodedDescription property. * * @return * possible object is * byte[] */ public byte[] getEncodedDescription() { return encodedDescription; } /** * Sets the value of the encodedDescription property. * * @param value * allowed object is * byte[] */ public void setEncodedDescription(byte[] value) { this.encodedDescription = value; } /** * Gets the value of the calculationDates property. * * @return * possible object is * {@link AdjustableRelativeOrPeriodicDates } * */ public AdjustableRelativeOrPeriodicDates getCalculationDates() { return calculationDates; } /** * Sets the value of the calculationDates property. * * @param value * allowed object is * {@link AdjustableRelativeOrPeriodicDates } * */ public void setCalculationDates(AdjustableRelativeOrPeriodicDates value) { this.calculationDates = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy