2package eu.gls_group.fpcs.v1.common;
4import java.math.BigDecimal;
5import javax.xml.bind.annotation.XmlAccessType;
6import javax.xml.bind.annotation.XmlAccessorType;
7import javax.xml.bind.annotation.XmlElement;
8import javax.xml.bind.annotation.XmlSchemaType;
9import javax.xml.bind.annotation.XmlType;
10import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
11import org.w3._2001.xmlschema.Adapter1;
39@XmlAccessorType(XmlAccessType.FIELD)
40@XmlType(name =
"CashService", propOrder = {
48 @XmlElement(name =
"ServiceName", required =
true)
49 protected String serviceName;
50 @XmlElement(name = "Reason", required = true, nillable = true)
51 protected String reason;
52 @XmlElement(name = "Amount", required = true, type = String.class)
54 @XmlSchemaType(name = "decimal")
55 protected BigDecimal amount;
56 @XmlElement(name = "Currency", required = true)
57 protected String currency;
67 public String getServiceName() {
80 this.serviceName = value;
152 this.currency = value;
void setCurrency(String value)
void setReason(String value)
void setAmount(BigDecimal value)
void setServiceName(String value)