2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
     4 import java.math.BigDecimal;
     5 import javax.xml.bind.annotation.XmlAccessType;
     6 import javax.xml.bind.annotation.XmlAccessorType;
     7 import javax.xml.bind.annotation.XmlElement;
     8 import javax.xml.bind.annotation.XmlType;
     9 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
    38 @XmlAccessorType(XmlAccessType.FIELD)
    39 @XmlType(name = 
"CashService", propOrder = {
    47     @XmlElement(name = 
"ServiceName", required = 
true)
    48     protected String serviceName;
    49     @XmlElement(name = "Reason", required = true)
    50     protected String reason;
    51     @XmlElement(name = "Amount", required = true, type = String.class)
    53     protected BigDecimal amount;
    54     @XmlElement(name = "Currency", required = true)
    55     protected String currency;
    65     public String getServiceName() {
    78         this.serviceName = value;
   150         this.currency = value;
 
void setAmount(BigDecimal value)
 
void setReason(String value)
 
void setServiceName(String value)
 
void setCurrency(String value)