org.fpml.fpml_5.confirmation.FloatingAmountEvents 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.04.04 at 04:56:21 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.XmlType;
/**
* Java class for FloatingAmountEvents complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FloatingAmountEvents">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="failureToPayPrincipal" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="interestShortfall" type="{http://www.fpml.org/FpML-5/confirmation}InterestShortFall" minOccurs="0"/>
* <element name="writedown" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="impliedWritedown" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="floatingAmountProvisions" type="{http://www.fpml.org/FpML-5/confirmation}FloatingAmountProvisions" minOccurs="0"/>
* <element name="additionalFixedPayments" type="{http://www.fpml.org/FpML-5/confirmation}AdditionalFixedPayments" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FloatingAmountEvents", propOrder = {
"failureToPayPrincipal",
"interestShortfall",
"writedown",
"impliedWritedown",
"floatingAmountProvisions",
"additionalFixedPayments"
})
public class FloatingAmountEvents {
protected Boolean failureToPayPrincipal;
protected InterestShortFall interestShortfall;
protected Boolean writedown;
protected Boolean impliedWritedown;
protected FloatingAmountProvisions floatingAmountProvisions;
protected AdditionalFixedPayments additionalFixedPayments;
/**
* Gets the value of the failureToPayPrincipal property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFailureToPayPrincipal() {
return failureToPayPrincipal;
}
/**
* Sets the value of the failureToPayPrincipal property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFailureToPayPrincipal(Boolean value) {
this.failureToPayPrincipal = value;
}
/**
* Gets the value of the interestShortfall property.
*
* @return
* possible object is
* {@link InterestShortFall }
*
*/
public InterestShortFall getInterestShortfall() {
return interestShortfall;
}
/**
* Sets the value of the interestShortfall property.
*
* @param value
* allowed object is
* {@link InterestShortFall }
*
*/
public void setInterestShortfall(InterestShortFall value) {
this.interestShortfall = value;
}
/**
* Gets the value of the writedown property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isWritedown() {
return writedown;
}
/**
* Sets the value of the writedown property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setWritedown(Boolean value) {
this.writedown = value;
}
/**
* Gets the value of the impliedWritedown property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isImpliedWritedown() {
return impliedWritedown;
}
/**
* Sets the value of the impliedWritedown property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setImpliedWritedown(Boolean value) {
this.impliedWritedown = value;
}
/**
* Gets the value of the floatingAmountProvisions property.
*
* @return
* possible object is
* {@link FloatingAmountProvisions }
*
*/
public FloatingAmountProvisions getFloatingAmountProvisions() {
return floatingAmountProvisions;
}
/**
* Sets the value of the floatingAmountProvisions property.
*
* @param value
* allowed object is
* {@link FloatingAmountProvisions }
*
*/
public void setFloatingAmountProvisions(FloatingAmountProvisions value) {
this.floatingAmountProvisions = value;
}
/**
* Gets the value of the additionalFixedPayments property.
*
* @return
* possible object is
* {@link AdditionalFixedPayments }
*
*/
public AdditionalFixedPayments getAdditionalFixedPayments() {
return additionalFixedPayments;
}
/**
* Sets the value of the additionalFixedPayments property.
*
* @param value
* allowed object is
* {@link AdditionalFixedPayments }
*
*/
public void setAdditionalFixedPayments(AdditionalFixedPayments value) {
this.additionalFixedPayments = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy