org.iso20022.pacs003_001.v09.StructuredRemittanceInformation17 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;
/**
* Information supplied to enable the matching/reconciliation of an entry with the items that the payment is intended to settle, such as commercial invoices in an accounts' receivable system, in a structured form.
*
* Java class for StructuredRemittanceInformation17 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StructuredRemittanceInformation17">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="RfrdDocInf" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}ReferredDocumentInformation7" maxOccurs="unbounded" minOccurs="0"/>
* <element name="RfrdDocAmt" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}RemittanceAmount2" minOccurs="0"/>
* <element name="CdtrRefInf" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}CreditorReferenceInformation2" minOccurs="0"/>
* <element name="Invcr" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}PartyIdentification135" minOccurs="0"/>
* <element name="Invcee" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}PartyIdentification135" minOccurs="0"/>
* <element name="TaxRmt" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}TaxData1" minOccurs="0"/>
* <element name="GrnshmtRmt" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}Garnishment3" minOccurs="0"/>
* <element name="AddtlRmtInf" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}Max140Text" maxOccurs="3" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StructuredRemittanceInformation17", propOrder = {
"rfrdDocInf",
"rfrdDocAmt",
"cdtrRefInf",
"invcr",
"invcee",
"taxRmt",
"grnshmtRmt",
"addtlRmtInf"
})
public class StructuredRemittanceInformation17 {
@XmlElement(name = "RfrdDocInf")
protected List rfrdDocInf;
@XmlElement(name = "RfrdDocAmt")
protected RemittanceAmount2 rfrdDocAmt;
@XmlElement(name = "CdtrRefInf")
protected CreditorReferenceInformation2 cdtrRefInf;
@XmlElement(name = "Invcr")
protected PartyIdentification135 invcr;
@XmlElement(name = "Invcee")
protected PartyIdentification135 invcee;
@XmlElement(name = "TaxRmt")
protected TaxData1 taxRmt;
@XmlElement(name = "GrnshmtRmt")
protected Garnishment3 grnshmtRmt;
@XmlElement(name = "AddtlRmtInf")
protected List addtlRmtInf;
/**
* Gets the value of the rfrdDocInf 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 rfrdDocInf property.
*
*
* For example, to add a new item, do as follows:
*
* getRfrdDocInf().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ReferredDocumentInformation7 }
*
*
*/
public List getRfrdDocInf() {
if (rfrdDocInf == null) {
rfrdDocInf = new ArrayList();
}
return this.rfrdDocInf;
}
/**
* Gets the value of the rfrdDocAmt property.
*
* @return
* possible object is
* {@link RemittanceAmount2 }
*
*/
public RemittanceAmount2 getRfrdDocAmt() {
return rfrdDocAmt;
}
/**
* Sets the value of the rfrdDocAmt property.
*
* @param value
* allowed object is
* {@link RemittanceAmount2 }
*
*/
public void setRfrdDocAmt(RemittanceAmount2 value) {
this.rfrdDocAmt = value;
}
/**
* Gets the value of the cdtrRefInf property.
*
* @return
* possible object is
* {@link CreditorReferenceInformation2 }
*
*/
public CreditorReferenceInformation2 getCdtrRefInf() {
return cdtrRefInf;
}
/**
* Sets the value of the cdtrRefInf property.
*
* @param value
* allowed object is
* {@link CreditorReferenceInformation2 }
*
*/
public void setCdtrRefInf(CreditorReferenceInformation2 value) {
this.cdtrRefInf = value;
}
/**
* Gets the value of the invcr property.
*
* @return
* possible object is
* {@link PartyIdentification135 }
*
*/
public PartyIdentification135 getInvcr() {
return invcr;
}
/**
* Sets the value of the invcr property.
*
* @param value
* allowed object is
* {@link PartyIdentification135 }
*
*/
public void setInvcr(PartyIdentification135 value) {
this.invcr = value;
}
/**
* Gets the value of the invcee property.
*
* @return
* possible object is
* {@link PartyIdentification135 }
*
*/
public PartyIdentification135 getInvcee() {
return invcee;
}
/**
* Sets the value of the invcee property.
*
* @param value
* allowed object is
* {@link PartyIdentification135 }
*
*/
public void setInvcee(PartyIdentification135 value) {
this.invcee = value;
}
/**
* Gets the value of the taxRmt property.
*
* @return
* possible object is
* {@link TaxData1 }
*
*/
public TaxData1 getTaxRmt() {
return taxRmt;
}
/**
* Sets the value of the taxRmt property.
*
* @param value
* allowed object is
* {@link TaxData1 }
*
*/
public void setTaxRmt(TaxData1 value) {
this.taxRmt = value;
}
/**
* Gets the value of the grnshmtRmt property.
*
* @return
* possible object is
* {@link Garnishment3 }
*
*/
public Garnishment3 getGrnshmtRmt() {
return grnshmtRmt;
}
/**
* Sets the value of the grnshmtRmt property.
*
* @param value
* allowed object is
* {@link Garnishment3 }
*
*/
public void setGrnshmtRmt(Garnishment3 value) {
this.grnshmtRmt = value;
}
/**
* Gets the value of the addtlRmtInf 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 addtlRmtInf property.
*
*
* For example, to add a new item, do as follows:
*
* getAddtlRmtInf().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getAddtlRmtInf() {
if (addtlRmtInf == null) {
addtlRmtInf = new ArrayList();
}
return this.addtlRmtInf;
}
}