org.iso20022.pacs007_001.v11.Party40Choice 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:01 PM IST
//
package org.iso20022.pacs007_001.v11;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Identification of a person, an organisation or a financial institution.
*
* Java class for Party40Choice complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Party40Choice">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="Pty" type="{urn:iso:std:iso:20022:tech:xsd:pacs.007.001.11}PartyIdentification135"/>
* <element name="Agt" type="{urn:iso:std:iso:20022:tech:xsd:pacs.007.001.11}BranchAndFinancialInstitutionIdentification6"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Party40Choice", propOrder = {
"pty",
"agt"
})
public class Party40Choice {
@XmlElement(name = "Pty")
protected PartyIdentification135 pty;
@XmlElement(name = "Agt")
protected BranchAndFinancialInstitutionIdentification6 agt;
/**
* Gets the value of the pty property.
*
* @return
* possible object is
* {@link PartyIdentification135 }
*
*/
public PartyIdentification135 getPty() {
return pty;
}
/**
* Sets the value of the pty property.
*
* @param value
* allowed object is
* {@link PartyIdentification135 }
*
*/
public void setPty(PartyIdentification135 value) {
this.pty = value;
}
/**
* Gets the value of the agt property.
*
* @return
* possible object is
* {@link BranchAndFinancialInstitutionIdentification6 }
*
*/
public BranchAndFinancialInstitutionIdentification6 getAgt() {
return agt;
}
/**
* Sets the value of the agt property.
*
* @param value
* allowed object is
* {@link BranchAndFinancialInstitutionIdentification6 }
*
*/
public void setAgt(BranchAndFinancialInstitutionIdentification6 value) {
this.agt = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy