org.fpml.fpml_5.confirmation.PaymentDetails 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 java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Details on the referenced payment. e.g. Its cashflow components, settlement details.
*
* Java class for PaymentDetails complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PaymentDetails">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="paymentReference" type="{http://www.fpml.org/FpML-5/confirmation}PaymentReference"/>
* <element name="grossCashflow" type="{http://www.fpml.org/FpML-5/confirmation}GrossCashflow" maxOccurs="unbounded"/>
* <element name="settlementInformation" type="{http://www.fpml.org/FpML-5/confirmation}SettlementInformation" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PaymentDetails", propOrder = {
"paymentReference",
"grossCashflow",
"settlementInformation"
})
public class PaymentDetails {
@XmlElement(required = true)
protected PaymentReference paymentReference;
@XmlElement(required = true)
protected List grossCashflow;
protected SettlementInformation settlementInformation;
/**
* Gets the value of the paymentReference property.
*
* @return
* possible object is
* {@link PaymentReference }
*
*/
public PaymentReference getPaymentReference() {
return paymentReference;
}
/**
* Sets the value of the paymentReference property.
*
* @param value
* allowed object is
* {@link PaymentReference }
*
*/
public void setPaymentReference(PaymentReference value) {
this.paymentReference = value;
}
/**
* Gets the value of the grossCashflow property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the grossCashflow property.
*
*
* For example, to add a new item, do as follows:
*
* getGrossCashflow().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link GrossCashflow }
*
*
*/
public List getGrossCashflow() {
if (grossCashflow == null) {
grossCashflow = new ArrayList();
}
return this.grossCashflow;
}
/**
* Gets the value of the settlementInformation property.
*
* @return
* possible object is
* {@link SettlementInformation }
*
*/
public SettlementInformation getSettlementInformation() {
return settlementInformation;
}
/**
* Sets the value of the settlementInformation property.
*
* @param value
* allowed object is
* {@link SettlementInformation }
*
*/
public void setSettlementInformation(SettlementInformation value) {
this.settlementInformation = value;
}
}