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

org.iso20022.remt001_001.v05.TransactionReferences5 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:25 PM IST 
//


package org.iso20022.remt001_001.v05;

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 TransactionReferences5 complex type. * *

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

 * <complexType name="TransactionReferences5">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="PmtInfId" type="{urn:iso:std:iso:20022:tech:xsd:remt.001.001.05}Max35Text" minOccurs="0"/>
 *         <element name="InstrId" type="{urn:iso:std:iso:20022:tech:xsd:remt.001.001.05}Max35Text" minOccurs="0"/>
 *         <element name="EndToEndId" type="{urn:iso:std:iso:20022:tech:xsd:remt.001.001.05}Max35Text"/>
 *         <element name="TxId" type="{urn:iso:std:iso:20022:tech:xsd:remt.001.001.05}Max35Text" minOccurs="0"/>
 *         <element name="UETR" type="{urn:iso:std:iso:20022:tech:xsd:remt.001.001.05}UUIDv4Identifier" minOccurs="0"/>
 *         <element name="MndtId" type="{urn:iso:std:iso:20022:tech:xsd:remt.001.001.05}Max35Text" minOccurs="0"/>
 *         <element name="CdtrSchmeId" type="{urn:iso:std:iso:20022:tech:xsd:remt.001.001.05}PartyIdentification135" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TransactionReferences5", propOrder = { "pmtInfId", "instrId", "endToEndId", "txId", "uetr", "mndtId", "cdtrSchmeId" }) public class TransactionReferences5 { @XmlElement(name = "PmtInfId") protected String pmtInfId; @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 = "MndtId") protected String mndtId; @XmlElement(name = "CdtrSchmeId") protected PartyIdentification135 cdtrSchmeId; /** * Gets the value of the pmtInfId property. * * @return * possible object is * {@link String } * */ public String getPmtInfId() { return pmtInfId; } /** * Sets the value of the pmtInfId property. * * @param value * allowed object is * {@link String } * */ public void setPmtInfId(String value) { this.pmtInfId = value; } /** * 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 mndtId property. * * @return * possible object is * {@link String } * */ public String getMndtId() { return mndtId; } /** * Sets the value of the mndtId property. * * @param value * allowed object is * {@link String } * */ public void setMndtId(String value) { this.mndtId = value; } /** * Gets the value of the cdtrSchmeId property. * * @return * possible object is * {@link PartyIdentification135 } * */ public PartyIdentification135 getCdtrSchmeId() { return cdtrSchmeId; } /** * Sets the value of the cdtrSchmeId property. * * @param value * allowed object is * {@link PartyIdentification135 } * */ public void setCdtrSchmeId(PartyIdentification135 value) { this.cdtrSchmeId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy