package org.kapott.hbci.sepa.jaxb.pain_002_002_02; import java.math.BigDecimal; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * <p>Java class for CurrencyAndAmountSEPA complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CurrencyAndAmountSEPA"> * <simpleContent> * <extension base="<urn:swift:xsd:$pain.002.002.02>CurrencyAndAmount_SimpleTypeSEPA"> * <attribute name="Ccy" use="required" type="{urn:swift:xsd:$pain.002.002.02}CurrencyCodeEUR" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CurrencyAndAmountSEPA", namespace = "urn:swift:xsd:$pain.002.002.02", propOrder = { "value" }) public class CurrencyAndAmountSEPA { @XmlValue protected BigDecimal value; @XmlAttribute(name = "Ccy", required = true) protected CurrencyCodeEUR ccy; /** * Gets the value of the value property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setValue(BigDecimal value) { this.value = value; } /** * Gets the value of the ccy property. * * @return * possible object is * {@link CurrencyCodeEUR } * */ public CurrencyCodeEUR getCcy() { return ccy; } /** * Sets the value of the ccy property. * * @param value * allowed object is * {@link CurrencyCodeEUR } * */ public void setCcy(CurrencyCodeEUR value) { this.ccy = value; } }