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

org.iso20022.pacs003_001.v09.ClearingSystemMemberIdentification2 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;


/**
 * Unique identification, as assigned by a clearing system, to unambiguously identify a member of the clearing system.
 * 
 * 

Java class for ClearingSystemMemberIdentification2 complex type. * *

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

 * <complexType name="ClearingSystemMemberIdentification2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ClrSysId" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}ClearingSystemIdentification2Choice" minOccurs="0"/>
 *         <element name="MmbId" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}Max35Text"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClearingSystemMemberIdentification2", propOrder = { "clrSysId", "mmbId" }) public class ClearingSystemMemberIdentification2 { @XmlElement(name = "ClrSysId") protected ClearingSystemIdentification2Choice clrSysId; @XmlElement(name = "MmbId", required = true) protected String mmbId; /** * Gets the value of the clrSysId property. * * @return * possible object is * {@link ClearingSystemIdentification2Choice } * */ public ClearingSystemIdentification2Choice getClrSysId() { return clrSysId; } /** * Sets the value of the clrSysId property. * * @param value * allowed object is * {@link ClearingSystemIdentification2Choice } * */ public void setClrSysId(ClearingSystemIdentification2Choice value) { this.clrSysId = value; } /** * Gets the value of the mmbId property. * * @return * possible object is * {@link String } * */ public String getMmbId() { return mmbId; } /** * Sets the value of the mmbId property. * * @param value * allowed object is * {@link String } * */ public void setMmbId(String value) { this.mmbId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy