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

net.finmath.smartcontract.product.xml.FeaturePayment 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.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Payment made following trigger occurence.
 * 
 * 

Java class for FeaturePayment complex type. * *

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

 * <complexType name="FeaturePayment">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}PaymentBase">
 *       <sequence>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}PayerReceiver.model"/>
 *         <choice>
 *           <element name="levelPercentage" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *           <element name="amount" type="{http://www.fpml.org/FpML-5/confirmation}NonNegativeDecimal"/>
 *         </choice>
 *         <element name="time" type="{http://www.fpml.org/FpML-5/confirmation}TimeTypeEnum" minOccurs="0"/>
 *         <element name="currency" type="{http://www.fpml.org/FpML-5/confirmation}Currency" minOccurs="0"/>
 *         <element name="featurePaymentDate" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableOrRelativeDate" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FeaturePayment", propOrder = { "payerPartyReference", "payerAccountReference", "receiverPartyReference", "receiverAccountReference", "levelPercentage", "amount", "time", "currency", "featurePaymentDate" }) public class FeaturePayment extends PaymentBase { @XmlElement(required = true) protected PartyReference payerPartyReference; protected AccountReference payerAccountReference; @XmlElement(required = true) protected PartyReference receiverPartyReference; protected AccountReference receiverAccountReference; protected BigDecimal levelPercentage; protected BigDecimal amount; @XmlSchemaType(name = "token") protected TimeTypeEnum time; protected Currency currency; protected AdjustableOrRelativeDate featurePaymentDate; /** * 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 levelPercentage property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getLevelPercentage() { return levelPercentage; } /** * Sets the value of the levelPercentage property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setLevelPercentage(BigDecimal value) { this.levelPercentage = value; } /** * Gets the value of the amount property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getAmount() { return amount; } /** * Sets the value of the amount property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setAmount(BigDecimal value) { this.amount = value; } /** * Gets the value of the time property. * * @return * possible object is * {@link TimeTypeEnum } * */ public TimeTypeEnum getTime() { return time; } /** * Sets the value of the time property. * * @param value * allowed object is * {@link TimeTypeEnum } * */ public void setTime(TimeTypeEnum value) { this.time = value; } /** * 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 featurePaymentDate property. * * @return * possible object is * {@link AdjustableOrRelativeDate } * */ public AdjustableOrRelativeDate getFeaturePaymentDate() { return featurePaymentDate; } /** * Sets the value of the featurePaymentDate property. * * @param value * allowed object is * {@link AdjustableOrRelativeDate } * */ public void setFeaturePaymentDate(AdjustableOrRelativeDate value) { this.featurePaymentDate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy