Class CustomerCreditTransferInitiationV09
- java.lang.Object
-
- org.kapott.hbci.sepa.jaxb.pain_001_001_09.CustomerCreditTransferInitiationV09
-
public class CustomerCreditTransferInitiationV09 extends java.lang.Object
Java class for CustomerCreditTransferInitiationV09 complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CustomerCreditTransferInitiationV09"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="GrpHdr" type="{urn:iso:std:iso:20022:tech:xsd:pain.001.001.09}GroupHeader85"/> <element name="PmtInf" type="{urn:iso:std:iso:20022:tech:xsd:pain.001.001.09}PaymentInstruction30" maxOccurs="unbounded"/> <element name="SplmtryData" type="{urn:iso:std:iso:20022:tech:xsd:pain.001.001.09}SupplementaryData1" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected GroupHeader85
grpHdr
protected java.util.List<PaymentInstruction30>
pmtInf
protected java.util.List<SupplementaryData1>
splmtryData
-
Constructor Summary
Constructors Constructor Description CustomerCreditTransferInitiationV09()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GroupHeader85
getGrpHdr()
Gets the value of the grpHdr property.java.util.List<PaymentInstruction30>
getPmtInf()
Gets the value of the pmtInf property.java.util.List<SupplementaryData1>
getSplmtryData()
Gets the value of the splmtryData property.void
setGrpHdr(GroupHeader85 value)
Sets the value of the grpHdr property.
-
-
-
Field Detail
-
grpHdr
protected GroupHeader85 grpHdr
-
pmtInf
protected java.util.List<PaymentInstruction30> pmtInf
-
splmtryData
protected java.util.List<SupplementaryData1> splmtryData
-
-
Method Detail
-
getGrpHdr
public GroupHeader85 getGrpHdr()
Gets the value of the grpHdr property.- Returns:
- possible object is
GroupHeader85
-
setGrpHdr
public void setGrpHdr(GroupHeader85 value)
Sets the value of the grpHdr property.- Parameters:
value
- allowed object isGroupHeader85
-
getPmtInf
public java.util.List<PaymentInstruction30> getPmtInf()
Gets the value of the pmtInf 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 pmtInf property.For example, to add a new item, do as follows:
getPmtInf().add(newItem);
Objects of the following type(s) are allowed in the list
PaymentInstruction30
-
getSplmtryData
public java.util.List<SupplementaryData1> getSplmtryData()
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 JAXB 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
SupplementaryData1
-
-