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

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


/**
 * A type for defining PrePayment.
 * 
 * 

Java class for PrePayment complex type. * *

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

 * <complexType name="PrePayment">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}PaymentBase">
 *       <sequence>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}PayerReceiver.model"/>
 *         <element name="prePayment" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="prePaymentAmount" type="{http://www.fpml.org/FpML-5/confirmation}NonNegativeMoney"/>
 *         <element name="prePaymentDate" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableDate"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PrePayment", propOrder = { "payerPartyReference", "payerAccountReference", "receiverPartyReference", "receiverAccountReference", "prePayment", "prePaymentAmount", "prePaymentDate" }) public class PrePayment extends PaymentBase { @XmlElement(required = true) protected PartyReference payerPartyReference; protected AccountReference payerAccountReference; @XmlElement(required = true) protected PartyReference receiverPartyReference; protected AccountReference receiverAccountReference; protected boolean prePayment; @XmlElement(required = true) protected NonNegativeMoney prePaymentAmount; @XmlElement(required = true) protected AdjustableDate prePaymentDate; /** * 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 prePayment property. * */ public boolean isPrePayment() { return prePayment; } /** * Sets the value of the prePayment property. * */ public void setPrePayment(boolean value) { this.prePayment = value; } /** * Gets the value of the prePaymentAmount property. * * @return * possible object is * {@link NonNegativeMoney } * */ public NonNegativeMoney getPrePaymentAmount() { return prePaymentAmount; } /** * Sets the value of the prePaymentAmount property. * * @param value * allowed object is * {@link NonNegativeMoney } * */ public void setPrePaymentAmount(NonNegativeMoney value) { this.prePaymentAmount = value; } /** * Gets the value of the prePaymentDate property. * * @return * possible object is * {@link AdjustableDate } * */ public AdjustableDate getPrePaymentDate() { return prePaymentDate; } /** * Sets the value of the prePaymentDate property. * * @param value * allowed object is * {@link AdjustableDate } * */ public void setPrePaymentDate(AdjustableDate value) { this.prePaymentDate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy