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