
org.iso20022.pain002_001.v12.PaymentTransaction129 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:14 PM IST
//
package org.iso20022.pain002_001.v12;
import java.util.ArrayList;
import java.util.List;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for PaymentTransaction129 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PaymentTransaction129">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="StsId" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}Max35Text" minOccurs="0"/>
* <element name="OrgnlInstrId" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}Max35Text" minOccurs="0"/>
* <element name="OrgnlEndToEndId" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}Max35Text" minOccurs="0"/>
* <element name="OrgnlUETR" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}UUIDv4Identifier" minOccurs="0"/>
* <element name="TxSts" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}ExternalPaymentTransactionStatus1Code" minOccurs="0"/>
* <element name="StsRsnInf" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}StatusReasonInformation12" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ChrgsInf" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}Charges7" maxOccurs="unbounded" minOccurs="0"/>
* <element name="TrckrData" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}TrackerData1" minOccurs="0"/>
* <element name="AccptncDtTm" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}ISODateTime" minOccurs="0"/>
* <element name="AcctSvcrRef" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}Max35Text" minOccurs="0"/>
* <element name="ClrSysRef" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}Max35Text" minOccurs="0"/>
* <element name="OrgnlTxRef" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}OriginalTransactionReference35" minOccurs="0"/>
* <element name="SplmtryData" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}SupplementaryData1" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PaymentTransaction129", propOrder = {
"stsId",
"orgnlInstrId",
"orgnlEndToEndId",
"orgnlUETR",
"txSts",
"stsRsnInf",
"chrgsInf",
"trckrData",
"accptncDtTm",
"acctSvcrRef",
"clrSysRef",
"orgnlTxRef",
"splmtryData"
})
public class PaymentTransaction129 {
@XmlElement(name = "StsId")
protected String stsId;
@XmlElement(name = "OrgnlInstrId")
protected String orgnlInstrId;
@XmlElement(name = "OrgnlEndToEndId")
protected String orgnlEndToEndId;
@XmlElement(name = "OrgnlUETR")
protected String orgnlUETR;
@XmlElement(name = "TxSts")
protected String txSts;
@XmlElement(name = "StsRsnInf")
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
@XmlElement(name = "TrckrData")
protected TrackerData1 trckrData;
@XmlElement(name = "AccptncDtTm")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "AcctSvcrRef")
protected String acctSvcrRef;
@XmlElement(name = "ClrSysRef")
protected String clrSysRef;
@XmlElement(name = "OrgnlTxRef")
protected OriginalTransactionReference35 orgnlTxRef;
@XmlElement(name = "SplmtryData")
protected List splmtryData;
/**
* Gets the value of the stsId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStsId() {
return stsId;
}
/**
* Sets the value of the stsId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStsId(String value) {
this.stsId = value;
}
/**
* Gets the value of the orgnlInstrId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrgnlInstrId() {
return orgnlInstrId;
}
/**
* Sets the value of the orgnlInstrId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrgnlInstrId(String value) {
this.orgnlInstrId = value;
}
/**
* Gets the value of the orgnlEndToEndId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrgnlEndToEndId() {
return orgnlEndToEndId;
}
/**
* Sets the value of the orgnlEndToEndId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrgnlEndToEndId(String value) {
this.orgnlEndToEndId = value;
}
/**
* Gets the value of the orgnlUETR property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrgnlUETR() {
return orgnlUETR;
}
/**
* Sets the value of the orgnlUETR property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrgnlUETR(String value) {
this.orgnlUETR = value;
}
/**
* Gets the value of the txSts property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTxSts() {
return txSts;
}
/**
* Sets the value of the txSts property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTxSts(String value) {
this.txSts = value;
}
/**
* Gets the value of the stsRsnInf 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 stsRsnInf property.
*
*
* For example, to add a new item, do as follows:
*
* getStsRsnInf().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link StatusReasonInformation12 }
*
*
*/
public List getStsRsnInf() {
if (stsRsnInf == null) {
stsRsnInf = new ArrayList();
}
return this.stsRsnInf;
}
/**
* Gets the value of the chrgsInf 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 chrgsInf property.
*
*
* For example, to add a new item, do as follows:
*
* getChrgsInf().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Charges7 }
*
*
*/
public List getChrgsInf() {
if (chrgsInf == null) {
chrgsInf = new ArrayList();
}
return this.chrgsInf;
}
/**
* Gets the value of the trckrData property.
*
* @return
* possible object is
* {@link TrackerData1 }
*
*/
public TrackerData1 getTrckrData() {
return trckrData;
}
/**
* Sets the value of the trckrData property.
*
* @param value
* allowed object is
* {@link TrackerData1 }
*
*/
public void setTrckrData(TrackerData1 value) {
this.trckrData = value;
}
/**
* Gets the value of the accptncDtTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
return accptncDtTm;
}
/**
* Sets the value of the accptncDtTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setAccptncDtTm(XMLGregorianCalendar value) {
this.accptncDtTm = value;
}
/**
* Gets the value of the acctSvcrRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAcctSvcrRef() {
return acctSvcrRef;
}
/**
* Sets the value of the acctSvcrRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAcctSvcrRef(String value) {
this.acctSvcrRef = value;
}
/**
* Gets the value of the clrSysRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClrSysRef() {
return clrSysRef;
}
/**
* Sets the value of the clrSysRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClrSysRef(String value) {
this.clrSysRef = value;
}
/**
* Gets the value of the orgnlTxRef property.
*
* @return
* possible object is
* {@link OriginalTransactionReference35 }
*
*/
public OriginalTransactionReference35 getOrgnlTxRef() {
return orgnlTxRef;
}
/**
* Sets the value of the orgnlTxRef property.
*
* @param value
* allowed object is
* {@link OriginalTransactionReference35 }
*
*/
public void setOrgnlTxRef(OriginalTransactionReference35 value) {
this.orgnlTxRef = value;
}
/**
* 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;
}
}