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 AmountTypeSEPA complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AmountTypeSEPA"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="InstdAmt" type="{urn:iso:std:iso:20022:tech:xsd:pain.001.003.03}ActiveOrHistoricCurrencyAndAmountSEPA"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AmountTypeSEPA", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.001.003.03", propOrder = { "instdAmt" }) public class AmountTypeSEPA { @XmlElement(name = "InstdAmt", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.001.003.03", required = true) protected ActiveOrHistoricCurrencyAndAmountSEPA instdAmt; /** * Gets the value of the instdAmt property. * * @return * possible object is * {@link ActiveOrHistoricCurrencyAndAmountSEPA } * */ public ActiveOrHistoricCurrencyAndAmountSEPA getInstdAmt() { return instdAmt; } /** * Sets the value of the instdAmt property. * * @param value * allowed object is * {@link ActiveOrHistoricCurrencyAndAmountSEPA } * */ public void setInstdAmt(ActiveOrHistoricCurrencyAndAmountSEPA value) { this.instdAmt = value; } }