package org.kapott.hbci.sepa.jaxb.pain_008_001_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 ReferredDocumentAmount1Choice complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ReferredDocumentAmount1Choice"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice> * <element name="DuePyblAmt" type="{urn:sepade:xsd:pain.008.001.01}CurrencyAndAmount"/> * <element name="DscntApldAmt" type="{urn:sepade:xsd:pain.008.001.01}CurrencyAndAmount"/> * <element name="RmtdAmt" type="{urn:sepade:xsd:pain.008.001.01}CurrencyAndAmount"/> * <element name="CdtNoteAmt" type="{urn:sepade:xsd:pain.008.001.01}CurrencyAndAmount"/> * <element name="TaxAmt" type="{urn:sepade:xsd:pain.008.001.01}CurrencyAndAmount"/> * </choice> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReferredDocumentAmount1Choice", namespace = "urn:sepade:xsd:pain.008.001.01", propOrder = { "duePyblAmt", "dscntApldAmt", "rmtdAmt", "cdtNoteAmt", "taxAmt" }) public class ReferredDocumentAmount1Choice { @XmlElement(name = "DuePyblAmt", namespace = "urn:sepade:xsd:pain.008.001.01") protected CurrencyAndAmount duePyblAmt; @XmlElement(name = "DscntApldAmt", namespace = "urn:sepade:xsd:pain.008.001.01") protected CurrencyAndAmount dscntApldAmt; @XmlElement(name = "RmtdAmt", namespace = "urn:sepade:xsd:pain.008.001.01") protected CurrencyAndAmount rmtdAmt; @XmlElement(name = "CdtNoteAmt", namespace = "urn:sepade:xsd:pain.008.001.01") protected CurrencyAndAmount cdtNoteAmt; @XmlElement(name = "TaxAmt", namespace = "urn:sepade:xsd:pain.008.001.01") protected CurrencyAndAmount taxAmt; /** * Gets the value of the duePyblAmt property. * * @return * possible object is * {@link CurrencyAndAmount } * */ public CurrencyAndAmount getDuePyblAmt() { return duePyblAmt; } /** * Sets the value of the duePyblAmt property. * * @param value * allowed object is * {@link CurrencyAndAmount } * */ public void setDuePyblAmt(CurrencyAndAmount value) { this.duePyblAmt = value; } /** * Gets the value of the dscntApldAmt property. * * @return * possible object is * {@link CurrencyAndAmount } * */ public CurrencyAndAmount getDscntApldAmt() { return dscntApldAmt; } /** * Sets the value of the dscntApldAmt property. * * @param value * allowed object is * {@link CurrencyAndAmount } * */ public void setDscntApldAmt(CurrencyAndAmount value) { this.dscntApldAmt = value; } /** * Gets the value of the rmtdAmt property. * * @return * possible object is * {@link CurrencyAndAmount } * */ public CurrencyAndAmount getRmtdAmt() { return rmtdAmt; } /** * Sets the value of the rmtdAmt property. * * @param value * allowed object is * {@link CurrencyAndAmount } * */ public void setRmtdAmt(CurrencyAndAmount value) { this.rmtdAmt = value; } /** * Gets the value of the cdtNoteAmt property. * * @return * possible object is * {@link CurrencyAndAmount } * */ public CurrencyAndAmount getCdtNoteAmt() { return cdtNoteAmt; } /** * Sets the value of the cdtNoteAmt property. * * @param value * allowed object is * {@link CurrencyAndAmount } * */ public void setCdtNoteAmt(CurrencyAndAmount value) { this.cdtNoteAmt = value; } /** * Gets the value of the taxAmt property. * * @return * possible object is * {@link CurrencyAndAmount } * */ public CurrencyAndAmount getTaxAmt() { return taxAmt; } /** * Sets the value of the taxAmt property. * * @param value * allowed object is * {@link CurrencyAndAmount } * */ public void setTaxAmt(CurrencyAndAmount value) { this.taxAmt = value; } }