package org.kapott.hbci.sepa.jaxb.pain_008_002_01; 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 RemittanceInformationSDDChoice complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RemittanceInformationSDDChoice"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice> * <element name="Ustrd" type="{urn:swift:xsd:$pain.008.002.01}Max140Text"/> * <element name="Strd" type="{urn:swift:xsd:$pain.008.002.01}StructuredRemittanceInformationSDD"/> * </choice> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RemittanceInformationSDDChoice", namespace = "urn:swift:xsd:$pain.008.002.01", propOrder = { "ustrd", "strd" }) public class RemittanceInformationSDDChoice { @XmlElement(name = "Ustrd", namespace = "urn:swift:xsd:$pain.008.002.01") protected String ustrd; @XmlElement(name = "Strd", namespace = "urn:swift:xsd:$pain.008.002.01") protected StructuredRemittanceInformationSDD strd; /** * Gets the value of the ustrd property. * * @return * possible object is * {@link String } * */ public String getUstrd() { return ustrd; } /** * Sets the value of the ustrd property. * * @param value * allowed object is * {@link String } * */ public void setUstrd(String value) { this.ustrd = value; } /** * Gets the value of the strd property. * * @return * possible object is * {@link StructuredRemittanceInformationSDD } * */ public StructuredRemittanceInformationSDD getStrd() { return strd; } /** * Sets the value of the strd property. * * @param value * allowed object is * {@link StructuredRemittanceInformationSDD } * */ public void setStrd(StructuredRemittanceInformationSDD value) { this.strd = value; } }