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

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


/**
 * 

Java class for FxTargetConstantPayoff complex type. * *

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

 * <complexType name="FxTargetConstantPayoff">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <sequence>
 *           <group ref="{http://www.fpml.org/FpML-5/confirmation}PayerReceiver.model"/>
 *           <element name="payment" type="{http://www.fpml.org/FpML-5/confirmation}PositiveMoney"/>
 *         </sequence>
 *         <element name="fixingAdjustment" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FxTargetConstantPayoff", propOrder = { "payerPartyReference", "payerAccountReference", "receiverPartyReference", "receiverAccountReference", "payment", "fixingAdjustment" }) public class FxTargetConstantPayoff { protected PartyReference payerPartyReference; protected AccountReference payerAccountReference; protected PartyReference receiverPartyReference; protected AccountReference receiverAccountReference; protected PositiveMoney payment; protected BigDecimal fixingAdjustment; /** * 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 payment property. * * @return * possible object is * {@link PositiveMoney } * */ public PositiveMoney getPayment() { return payment; } /** * Sets the value of the payment property. * * @param value * allowed object is * {@link PositiveMoney } * */ public void setPayment(PositiveMoney value) { this.payment = value; } /** * Gets the value of the fixingAdjustment property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getFixingAdjustment() { return fixingAdjustment; } /** * Sets the value of the fixingAdjustment property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setFixingAdjustment(BigDecimal value) { this.fixingAdjustment = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy