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;
40@XmlAccessorType(XmlAccessType.FIELD)
41@XmlType(name =
"AddOnLiabilityService", propOrder = {
49 @XmlElement(name =
"ServiceName", required =
true)
50 protected String serviceName;
51 @XmlElement(name = "Amount", required = true, type = String.class)
53 @XmlSchemaType(name = "decimal")
54 protected BigDecimal amount;
55 @XmlElement(name = "Currency", required = true)
56 protected String currency;
57 @XmlElement(name = "ParcelContent")
58 protected String parcelContent;
68 public String getServiceName() {
81 this.serviceName = value;
129 this.currency = value;
141 return parcelContent;
153 this.parcelContent = value;
void setServiceName(String value)
String getParcelContent()
void setCurrency(String value)
void setAmount(BigDecimal value)
void setParcelContent(String value)