2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
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.XmlRootElement;
9import javax.xml.bind.annotation.XmlSchemaType;
10import javax.xml.bind.annotation.XmlType;
11import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
12import org.w3._2001.xmlschema.Adapter1;
47@XmlAccessorType(XmlAccessType.FIELD)
48@XmlType(name =
"", propOrder = {
51 "shipmentUnitReference",
53 "partnerParcelNumber",
54 "nationalParcelNumber",
57@XmlRootElement(name =
"UpdateParcelWeightRequestParameter")
60 @XmlElement(name =
"TrackID")
61 protected String trackID;
62 @XmlElement(name = "ShipmentReference")
63 protected String shipmentReference;
64 @XmlElement(name = "ShipmentUnitReference")
65 protected String shipmentUnitReference;
66 @XmlElement(name = "ParcelNumber")
67 protected String parcelNumber;
68 @XmlElement(name = "PartnerParcelNumber")
69 protected String partnerParcelNumber;
70 @XmlElement(name = "NationalParcelNumber")
71 protected String nationalParcelNumber;
72 @XmlElement(name = "Weight", required = true, type = String.class)
74 @XmlSchemaType(name = "decimal")
75 protected BigDecimal weight;
85 public String getTrackID() {
110 return shipmentReference;
122 this.shipmentReference = value;
134 return shipmentUnitReference;
146 this.shipmentUnitReference = value;
170 this.parcelNumber = value;
182 return partnerParcelNumber;
194 this.partnerParcelNumber = value;
206 return nationalParcelNumber;
218 this.nationalParcelNumber = value;
void setParcelNumber(String value)
void setWeight(BigDecimal value)
String getPartnerParcelNumber()
String getNationalParcelNumber()
void setTrackID(String value)
String getShipmentReference()
String getShipmentUnitReference()
void setShipmentUnitReference(String value)
void setPartnerParcelNumber(String value)
void setNationalParcelNumber(String value)
void setShipmentReference(String value)