org.fpml.fpml_5.confirmation.LoanTradingNonRecurringFee Maven / Gradle / Ivy
//
// 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* A structure that details the underlying elements that affect the calculation of a fee accrual.
*
* Java class for LoanTradingNonRecurringFee complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LoanTradingNonRecurringFee">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="amount" type="{http://www.fpml.org/FpML-5/confirmation}NonNegativeMoney"/>
* <choice>
* <element name="feeType" type="{http://www.fpml.org/FpML-5/confirmation}LoanTradingNonRecurringFeeTypeEnum"/>
* <element name="miscFeeType" type="{http://www.fpml.org/FpML-5/confirmation}NonRecurringMiscFeeType"/>
* </choice>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LoanTradingNonRecurringFee", propOrder = {
"amount",
"feeType",
"miscFeeType"
})
public class LoanTradingNonRecurringFee {
@XmlElement(required = true)
protected NonNegativeMoney amount;
@XmlSchemaType(name = "token")
protected LoanTradingNonRecurringFeeTypeEnum feeType;
protected NonRecurringMiscFeeType miscFeeType;
/**
* Gets the value of the amount property.
*
* @return
* possible object is
* {@link NonNegativeMoney }
*
*/
public NonNegativeMoney getAmount() {
return amount;
}
/**
* Sets the value of the amount property.
*
* @param value
* allowed object is
* {@link NonNegativeMoney }
*
*/
public void setAmount(NonNegativeMoney value) {
this.amount = value;
}
/**
* Gets the value of the feeType property.
*
* @return
* possible object is
* {@link LoanTradingNonRecurringFeeTypeEnum }
*
*/
public LoanTradingNonRecurringFeeTypeEnum getFeeType() {
return feeType;
}
/**
* Sets the value of the feeType property.
*
* @param value
* allowed object is
* {@link LoanTradingNonRecurringFeeTypeEnum }
*
*/
public void setFeeType(LoanTradingNonRecurringFeeTypeEnum value) {
this.feeType = value;
}
/**
* Gets the value of the miscFeeType property.
*
* @return
* possible object is
* {@link NonRecurringMiscFeeType }
*
*/
public NonRecurringMiscFeeType getMiscFeeType() {
return miscFeeType;
}
/**
* Sets the value of the miscFeeType property.
*
* @param value
* allowed object is
* {@link NonRecurringMiscFeeType }
*
*/
public void setMiscFeeType(NonRecurringMiscFeeType value) {
this.miscFeeType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy