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

net.finmath.smartcontract.product.xml.LcAccrual 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;


/**
 * A full definition of the accrual characteristics of a letter of credit.
 *                 This structure defines both the underlying letter of credit issuance fee rate as well as any FX rates
 *                 applied.
 *             
 * 
 * 

Java class for LcAccrual complex type. * *

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

 * <complexType name="LcAccrual">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}FeeRateOptionBase">
 *       <sequence minOccurs="0">
 *         <element name="currency" type="{http://www.fpml.org/FpML-5/confirmation}Currency"/>
 *         <element name="lcFxRate" type="{http://www.fpml.org/FpML-5/confirmation}FxTerms"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LcAccrual", propOrder = { "currency", "lcFxRate" }) public class LcAccrual extends FeeRateOptionBase { protected Currency currency; protected FxTerms lcFxRate; /** * Gets the value of the currency property. * * @return * possible object is * {@link Currency } * */ public Currency getCurrency() { return currency; } /** * Sets the value of the currency property. * * @param value * allowed object is * {@link Currency } * */ public void setCurrency(Currency value) { this.currency = value; } /** * Gets the value of the lcFxRate property. * * @return * possible object is * {@link FxTerms } * */ public FxTerms getLcFxRate() { return lcFxRate; } /** * Sets the value of the lcFxRate property. * * @param value * allowed object is * {@link FxTerms } * */ public void setLcFxRate(FxTerms value) { this.lcFxRate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy