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