All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.iso20022.pacs003_001.v09.PaymentIdentification13 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Provides further means of referencing a payment transaction.
 * 
 * 

Java class for PaymentIdentification13 complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PaymentIdentification13">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="InstrId" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}Max35Text" minOccurs="0"/>
 *         <element name="EndToEndId" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}Max35Text"/>
 *         <element name="TxId" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}Max35Text" minOccurs="0"/>
 *         <element name="UETR" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}UUIDv4Identifier" minOccurs="0"/>
 *         <element name="ClrSysRef" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}Max35Text" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaymentIdentification13", propOrder = { "instrId", "endToEndId", "txId", "uetr", "clrSysRef" }) public class PaymentIdentification13 { @XmlElement(name = "InstrId") protected String instrId; @XmlElement(name = "EndToEndId", required = true) protected String endToEndId; @XmlElement(name = "TxId") protected String txId; @XmlElement(name = "UETR") protected String uetr; @XmlElement(name = "ClrSysRef") protected String clrSysRef; /** * Gets the value of the instrId property. * * @return * possible object is * {@link String } * */ public String getInstrId() { return instrId; } /** * Sets the value of the instrId property. * * @param value * allowed object is * {@link String } * */ public void setInstrId(String value) { this.instrId = value; } /** * Gets the value of the endToEndId property. * * @return * possible object is * {@link String } * */ public String getEndToEndId() { return endToEndId; } /** * Sets the value of the endToEndId property. * * @param value * allowed object is * {@link String } * */ public void setEndToEndId(String value) { this.endToEndId = value; } /** * Gets the value of the txId property. * * @return * possible object is * {@link String } * */ public String getTxId() { return txId; } /** * Sets the value of the txId property. * * @param value * allowed object is * {@link String } * */ public void setTxId(String value) { this.txId = value; } /** * Gets the value of the uetr property. * * @return * possible object is * {@link String } * */ public String getUETR() { return uetr; } /** * Sets the value of the uetr property. * * @param value * allowed object is * {@link String } * */ public void setUETR(String value) { this.uetr = 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy