package org.kapott.hbci.sepa.jaxb.pain_002_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 PersonIdentificationSEPA complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PersonIdentificationSEPA"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="OthrId" type="{urn:swift:xsd:$pain.002.002.02}GenericIdentificationSEPA"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PersonIdentificationSEPA", namespace = "urn:swift:xsd:$pain.002.002.02", propOrder = { "othrId" }) public class PersonIdentificationSEPA { @XmlElement(name = "OthrId", namespace = "urn:swift:xsd:$pain.002.002.02", required = true) protected GenericIdentificationSEPA othrId; /** * Gets the value of the othrId property. * * @return * possible object is * {@link GenericIdentificationSEPA } * */ public GenericIdentificationSEPA getOthrId() { return othrId; } /** * Sets the value of the othrId property. * * @param value * allowed object is * {@link GenericIdentificationSEPA } * */ public void setOthrId(GenericIdentificationSEPA value) { this.othrId = value; } }