org.iso20022.pain008_001.v10.RemittanceInformation21 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:05:19 PM IST
//
package org.iso20022.pain008_001.v10;
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;
/**
* Java class for RemittanceInformation21 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RemittanceInformation21">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Ustrd" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}Max140Text" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Strd" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}StructuredRemittanceInformation17" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RemittanceInformation21", propOrder = {
"ustrd",
"strd"
})
public class RemittanceInformation21 {
@XmlElement(name = "Ustrd")
protected List ustrd;
@XmlElement(name = "Strd")
protected List strd;
/**
* Gets the value of the ustrd 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 ustrd property.
*
*
* For example, to add a new item, do as follows:
*
* getUstrd().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getUstrd() {
if (ustrd == null) {
ustrd = new ArrayList();
}
return this.ustrd;
}
/**
* Gets the value of the strd 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 strd property.
*
*
* For example, to add a new item, do as follows:
*
* getStrd().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link StructuredRemittanceInformation17 }
*
*
*/
public List getStrd() {
if (strd == null) {
strd = new ArrayList();
}
return this.strd;
}
}