org.fpml.fpml_5.confirmation.LcAdjustment 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.XmlType;
/**
* An event representing a change in the notional amount associated with an outstanding letter of credit.
*
* Java class for LcAdjustment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LcAdjustment">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}AbstractLcEvent">
* <sequence>
* <element name="adjustment" type="{http://www.fpml.org/FpML-5/confirmation}Adjustment"/>
* <element name="amount" type="{http://www.fpml.org/FpML-5/confirmation}MoneyWithParticipantShare"/>
* <element name="relatedBorrowing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LcAdjustment", propOrder = {
"adjustment",
"amount",
"relatedBorrowing"
})
public class LcAdjustment
extends AbstractLcEvent
{
@XmlElement(required = true)
protected Adjustment adjustment;
@XmlElement(required = true)
protected MoneyWithParticipantShare amount;
protected boolean relatedBorrowing;
/**
* Gets the value of the adjustment property.
*
* @return
* possible object is
* {@link Adjustment }
*
*/
public Adjustment getAdjustment() {
return adjustment;
}
/**
* Sets the value of the adjustment property.
*
* @param value
* allowed object is
* {@link Adjustment }
*
*/
public void setAdjustment(Adjustment value) {
this.adjustment = value;
}
/**
* Gets the value of the amount property.
*
* @return
* possible object is
* {@link MoneyWithParticipantShare }
*
*/
public MoneyWithParticipantShare getAmount() {
return amount;
}
/**
* Sets the value of the amount property.
*
* @param value
* allowed object is
* {@link MoneyWithParticipantShare }
*
*/
public void setAmount(MoneyWithParticipantShare value) {
this.amount = value;
}
/**
* Gets the value of the relatedBorrowing property.
*
*/
public boolean isRelatedBorrowing() {
return relatedBorrowing;
}
/**
* Sets the value of the relatedBorrowing property.
*
*/
public void setRelatedBorrowing(boolean value) {
this.relatedBorrowing = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy