
org.iso20022.pain013_001.v09.BranchAndFinancialInstitutionIdentification6 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:21 PM IST
//
package org.iso20022.pain013_001.v09;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for BranchAndFinancialInstitutionIdentification6 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BranchAndFinancialInstitutionIdentification6">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="FinInstnId" type="{urn:iso:std:iso:20022:tech:xsd:pain.013.001.09}FinancialInstitutionIdentification18"/>
* <element name="BrnchId" type="{urn:iso:std:iso:20022:tech:xsd:pain.013.001.09}BranchData3" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BranchAndFinancialInstitutionIdentification6", propOrder = {
"finInstnId",
"brnchId"
})
public class BranchAndFinancialInstitutionIdentification6 {
@XmlElement(name = "FinInstnId", required = true)
protected FinancialInstitutionIdentification18 finInstnId;
@XmlElement(name = "BrnchId")
protected BranchData3 brnchId;
/**
* Gets the value of the finInstnId property.
*
* @return
* possible object is
* {@link FinancialInstitutionIdentification18 }
*
*/
public FinancialInstitutionIdentification18 getFinInstnId() {
return finInstnId;
}
/**
* Sets the value of the finInstnId property.
*
* @param value
* allowed object is
* {@link FinancialInstitutionIdentification18 }
*
*/
public void setFinInstnId(FinancialInstitutionIdentification18 value) {
this.finInstnId = value;
}
/**
* Gets the value of the brnchId property.
*
* @return
* possible object is
* {@link BranchData3 }
*
*/
public BranchData3 getBrnchId() {
return brnchId;
}
/**
* Sets the value of the brnchId property.
*
* @param value
* allowed object is
* {@link BranchData3 }
*
*/
public void setBrnchId(BranchData3 value) {
this.brnchId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy