package org.kapott.hbci.sepa.jaxb.pain_002_003_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 CreditorReferenceTypeSEPA complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CreditorReferenceTypeSEPA"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CdOrPrtry" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.003.03}CreditorReferenceTypeCodeSEPA"/> * <element name="Issr" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.003.03}Max35Text" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CreditorReferenceTypeSEPA", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03", propOrder = { "cdOrPrtry", "issr" }) public class CreditorReferenceTypeSEPA { @XmlElement(name = "CdOrPrtry", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03", required = true) protected CreditorReferenceTypeCodeSEPA cdOrPrtry; @XmlElement(name = "Issr", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03") protected String issr; /** * Gets the value of the cdOrPrtry property. * * @return * possible object is * {@link CreditorReferenceTypeCodeSEPA } * */ public CreditorReferenceTypeCodeSEPA getCdOrPrtry() { return cdOrPrtry; } /** * Sets the value of the cdOrPrtry property. * * @param value * allowed object is * {@link CreditorReferenceTypeCodeSEPA } * */ public void setCdOrPrtry(CreditorReferenceTypeCodeSEPA value) { this.cdOrPrtry = value; } /** * Gets the value of the issr property. * * @return * possible object is * {@link String } * */ public String getIssr() { return issr; } /** * Sets the value of the issr property. * * @param value * allowed object is * {@link String } * */ public void setIssr(String value) { this.issr = value; } }