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