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 StructuredRemittanceInformationSEPA2 complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="StructuredRemittanceInformationSEPA2"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CdtrRefInf" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.03}CreditorReferenceInformationSEPA" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StructuredRemittanceInformationSEPA2", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.001.03", propOrder = { "cdtrRefInf" }) public class StructuredRemittanceInformationSEPA2 { @XmlElement(name = "CdtrRefInf", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.001.03") protected CreditorReferenceInformationSEPA cdtrRefInf; /** * Gets the value of the cdtrRefInf property. * * @return * possible object is * {@link CreditorReferenceInformationSEPA } * */ public CreditorReferenceInformationSEPA getCdtrRefInf() { return cdtrRefInf; } /** * Sets the value of the cdtrRefInf property. * * @param value * allowed object is * {@link CreditorReferenceInformationSEPA } * */ public void setCdtrRefInf(CreditorReferenceInformationSEPA value) { this.cdtrRefInf = value; } }