org.iso20022.pacs003_001.v09.Party38Choice 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;
/**
* Nature or use of the account.
*
* Java class for Party38Choice complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Party38Choice">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="OrgId" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}OrganisationIdentification29"/>
* <element name="PrvtId" type="{urn:iso:std:iso:20022:tech:xsd:pacs.003.001.09}PersonIdentification13"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Party38Choice", propOrder = {
"orgId",
"prvtId"
})
public class Party38Choice {
@XmlElement(name = "OrgId")
protected OrganisationIdentification29 orgId;
@XmlElement(name = "PrvtId")
protected PersonIdentification13 prvtId;
/**
* Gets the value of the orgId property.
*
* @return
* possible object is
* {@link OrganisationIdentification29 }
*
*/
public OrganisationIdentification29 getOrgId() {
return orgId;
}
/**
* Sets the value of the orgId property.
*
* @param value
* allowed object is
* {@link OrganisationIdentification29 }
*
*/
public void setOrgId(OrganisationIdentification29 value) {
this.orgId = value;
}
/**
* Gets the value of the prvtId property.
*
* @return
* possible object is
* {@link PersonIdentification13 }
*
*/
public PersonIdentification13 getPrvtId() {
return prvtId;
}
/**
* Sets the value of the prvtId property.
*
* @param value
* allowed object is
* {@link PersonIdentification13 }
*
*/
public void setPrvtId(PersonIdentification13 value) {
this.prvtId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy