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

org.fpml.fpml_5.confirmation.ExerciseFee Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.61
Show newest version
//
// 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.05.10 at 03:58:40 PM UTC 
//


package org.fpml.fpml_5.confirmation;

import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * A type defining the fee payable on exercise of an option. This fee may be defined as an amount or a percentage of the notional exercised.
 * 
 * 

Java class for ExerciseFee complex type. * *

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

 * <complexType name="ExerciseFee">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}PayerReceiver.model"/>
 *         <element name="notionalReference" type="{http://www.fpml.org/FpML-5/confirmation}NotionalReference"/>
 *         <choice>
 *           <element name="feeAmount" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *           <element name="feeRate" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *         </choice>
 *         <element name="feePaymentDate" type="{http://www.fpml.org/FpML-5/confirmation}RelativeDateOffset"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ExerciseFee", propOrder = { "payerPartyReference", "payerAccountReference", "receiverPartyReference", "receiverAccountReference", "notionalReference", "feeAmount", "feeRate", "feePaymentDate" }) public class ExerciseFee { @XmlElement(required = true) protected PartyReference payerPartyReference; protected AccountReference payerAccountReference; @XmlElement(required = true) protected PartyReference receiverPartyReference; protected AccountReference receiverAccountReference; @XmlElement(required = true) protected NotionalReference notionalReference; protected BigDecimal feeAmount; protected BigDecimal feeRate; @XmlElement(required = true) protected RelativeDateOffset feePaymentDate; /** * Gets the value of the payerPartyReference property. * * @return * possible object is * {@link PartyReference } * */ public PartyReference getPayerPartyReference() { return payerPartyReference; } /** * Sets the value of the payerPartyReference property. * * @param value * allowed object is * {@link PartyReference } * */ public void setPayerPartyReference(PartyReference value) { this.payerPartyReference = value; } /** * Gets the value of the payerAccountReference property. * * @return * possible object is * {@link AccountReference } * */ public AccountReference getPayerAccountReference() { return payerAccountReference; } /** * Sets the value of the payerAccountReference property. * * @param value * allowed object is * {@link AccountReference } * */ public void setPayerAccountReference(AccountReference value) { this.payerAccountReference = value; } /** * Gets the value of the receiverPartyReference property. * * @return * possible object is * {@link PartyReference } * */ public PartyReference getReceiverPartyReference() { return receiverPartyReference; } /** * Sets the value of the receiverPartyReference property. * * @param value * allowed object is * {@link PartyReference } * */ public void setReceiverPartyReference(PartyReference value) { this.receiverPartyReference = value; } /** * Gets the value of the receiverAccountReference property. * * @return * possible object is * {@link AccountReference } * */ public AccountReference getReceiverAccountReference() { return receiverAccountReference; } /** * Sets the value of the receiverAccountReference property. * * @param value * allowed object is * {@link AccountReference } * */ public void setReceiverAccountReference(AccountReference value) { this.receiverAccountReference = value; } /** * Gets the value of the notionalReference property. * * @return * possible object is * {@link NotionalReference } * */ public NotionalReference getNotionalReference() { return notionalReference; } /** * Sets the value of the notionalReference property. * * @param value * allowed object is * {@link NotionalReference } * */ public void setNotionalReference(NotionalReference value) { this.notionalReference = value; } /** * Gets the value of the feeAmount property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getFeeAmount() { return feeAmount; } /** * Sets the value of the feeAmount property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setFeeAmount(BigDecimal value) { this.feeAmount = value; } /** * Gets the value of the feeRate property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getFeeRate() { return feeRate; } /** * Sets the value of the feeRate property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setFeeRate(BigDecimal value) { this.feeRate = value; } /** * Gets the value of the feePaymentDate property. * * @return * possible object is * {@link RelativeDateOffset } * */ public RelativeDateOffset getFeePaymentDate() { return feePaymentDate; } /** * Sets the value of the feePaymentDate property. * * @param value * allowed object is * {@link RelativeDateOffset } * */ public void setFeePaymentDate(RelativeDateOffset value) { this.feePaymentDate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy