package org.kapott.hbci.sepa.jaxb.pain_008_002_02; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PersonIdentificationSEPA1Choice complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PersonIdentificationSEPA1Choice"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice> * <element name="DtAndPlcOfBirth" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.002.02}DateAndPlaceOfBirth"/> * <element name="Othr" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.002.02}GenericPersonIdentification1"/> * </choice> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PersonIdentificationSEPA1Choice", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.008.002.02", propOrder = { "dtAndPlcOfBirth", "othr" }) public class PersonIdentificationSEPA1Choice { @XmlElement(name = "DtAndPlcOfBirth", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.008.002.02") protected DateAndPlaceOfBirth dtAndPlcOfBirth; @XmlElement(name = "Othr", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.008.002.02") protected GenericPersonIdentification1 othr; /** * Gets the value of the dtAndPlcOfBirth property. * * @return * possible object is * {@link DateAndPlaceOfBirth } * */ public DateAndPlaceOfBirth getDtAndPlcOfBirth() { return dtAndPlcOfBirth; } /** * Sets the value of the dtAndPlcOfBirth property. * * @param value * allowed object is * {@link DateAndPlaceOfBirth } * */ public void setDtAndPlcOfBirth(DateAndPlaceOfBirth value) { this.dtAndPlcOfBirth = value; } /** * Gets the value of the othr property. * * @return * possible object is * {@link GenericPersonIdentification1 } * */ public GenericPersonIdentification1 getOthr() { return othr; } /** * Sets the value of the othr property. * * @param value * allowed object is * {@link GenericPersonIdentification1 } * */ public void setOthr(GenericPersonIdentification1 value) { this.othr = value; } }