net.finmath.smartcontract.product.xml.MoneyWithParticipantShare 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;
/**
* An extension of the money type with the ability to specify a lender share
* amount in addition to the global amount (represented by 'amount').
*
*
* Java class for MoneyWithParticipantShare complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MoneyWithParticipantShare">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}NonNegativeMoney">
* <sequence>
* <element name="shareAmount" type="{http://www.fpml.org/FpML-5/confirmation}NonNegativeDecimal" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MoneyWithParticipantShare", propOrder = {
"shareAmount"
})
public class MoneyWithParticipantShare
extends NonNegativeMoney
{
protected BigDecimal shareAmount;
/**
* Gets the value of the shareAmount property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getShareAmount() {
return shareAmount;
}
/**
* Sets the value of the shareAmount property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setShareAmount(BigDecimal value) {
this.shareAmount = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy