
org.iso20022.pacs003_001.v09.FIToFICustomerDirectDebitV09 Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.1
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.09.21 at 06:04:57 PM IST
//
package org.iso20022.pacs003_001.v09;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Scope
* The FinancialInstitutionToFinancialInstitutionCustomerDirectDebit message is sent by the creditor agent to the debtor agent, directly or through other agents and/or a payment clearing and settlement system.
* It is used to collect funds from a debtor account for a creditor.
* Usage
* The FItoFICustomerDirectDebit message can contain one or more customer direct debit instructions.
* The FIToFICustomerDirectDebit message does not allow for grouping.
* The FItoFICustomerDirectDebit message may or may not contain mandate related information, that is extracts from a mandate, such as the MandateIdentification or DateOfSignature. The FIToFICustomerDirectDebit message must not be considered as a mandate.
* The FItoFICustomerDirectDebit message can be used in domestic and cross-border scenarios.
*
* Java class for FIToFICustomerDirectDebitV09 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FIToFICustomerDirectDebitV09">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="GrpHdr" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}GroupHeader98"/>
* <element name="DrctDbtTxInf" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}DirectDebitTransactionInformation29" maxOccurs="unbounded"/>
* <element name="SplmtryData" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}SupplementaryData1" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FIToFICustomerDirectDebitV09", propOrder = {
"grpHdr",
"drctDbtTxInf",
"splmtryData"
})
public class FIToFICustomerDirectDebitV09 {
@XmlElement(name = "GrpHdr", required = true)
protected GroupHeader98 grpHdr;
@XmlElement(name = "DrctDbtTxInf", required = true)
protected List drctDbtTxInf;
@XmlElement(name = "SplmtryData")
protected List splmtryData;
/**
* Gets the value of the grpHdr property.
*
* @return
* possible object is
* {@link GroupHeader98 }
*
*/
public GroupHeader98 getGrpHdr() {
return grpHdr;
}
/**
* Sets the value of the grpHdr property.
*
* @param value
* allowed object is
* {@link GroupHeader98 }
*
*/
public void setGrpHdr(GroupHeader98 value) {
this.grpHdr = value;
}
/**
* Gets the value of the drctDbtTxInf 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 Jakarta XML Binding object.
* This is why there is not a set
method for the drctDbtTxInf property.
*
*
* For example, to add a new item, do as follows:
*
* getDrctDbtTxInf().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DirectDebitTransactionInformation29 }
*
*
*/
public List getDrctDbtTxInf() {
if (drctDbtTxInf == null) {
drctDbtTxInf = new ArrayList();
}
return this.drctDbtTxInf;
}
/**
* Gets the value of the splmtryData 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 Jakarta XML Binding object.
* This is why there is not a set
method for the splmtryData property.
*
*
* For example, to add a new item, do as follows:
*
* getSplmtryData().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SupplementaryData1 }
*
*
*/
public List getSplmtryData() {
if (splmtryData == null) {
splmtryData = new ArrayList();
}
return this.splmtryData;
}
}