package org.kapott.hbci.sepa.jaxb.pain_001_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 BranchAndFinancialInstitutionIdentificationSEPA3 complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="BranchAndFinancialInstitutionIdentificationSEPA3"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="FinInstnId" type="{urn:iso:std:iso:20022:tech:xsd:pain.001.001.03}FinancialInstitutionIdentificationSEPA3"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BranchAndFinancialInstitutionIdentificationSEPA3", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.001.001.03", propOrder = { "finInstnId" }) public class BranchAndFinancialInstitutionIdentificationSEPA3 { @XmlElement(name = "FinInstnId", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.001.001.03", required = true) protected FinancialInstitutionIdentificationSEPA3 finInstnId; /** * Gets the value of the finInstnId property. * * @return * possible object is * {@link FinancialInstitutionIdentificationSEPA3 } * */ public FinancialInstitutionIdentificationSEPA3 getFinInstnId() { return finInstnId; } /** * Sets the value of the finInstnId property. * * @param value * allowed object is * {@link FinancialInstitutionIdentificationSEPA3 } * */ public void setFinInstnId(FinancialInstitutionIdentificationSEPA3 value) { this.finInstnId = value; } }