package org.kapott.hbci.sepa.jaxb.pain_002_001_03; 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 AccountIdentificationSEPAMandate complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AccountIdentificationSEPAMandate"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice> * <element name="IBAN" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.03}IBAN2007Identifier"/> * <element name="Othr" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.03}GenericAccountIdentificationSEPA"/> * </choice> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AccountIdentificationSEPAMandate", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.001.03", propOrder = { "iban", "othr" }) public class AccountIdentificationSEPAMandate { @XmlElement(name = "IBAN", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.001.03") protected String iban; @XmlElement(name = "Othr", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.001.03") protected GenericAccountIdentificationSEPA othr; /** * Gets the value of the iban property. * * @return * possible object is * {@link String } * */ public String getIBAN() { return iban; } /** * Sets the value of the iban property. * * @param value * allowed object is * {@link String } * */ public void setIBAN(String value) { this.iban = value; } /** * Gets the value of the othr property. * * @return * possible object is * {@link GenericAccountIdentificationSEPA } * */ public GenericAccountIdentificationSEPA getOthr() { return othr; } /** * Sets the value of the othr property. * * @param value * allowed object is * {@link GenericAccountIdentificationSEPA } * */ public void setOthr(GenericAccountIdentificationSEPA value) { this.othr = value; } }