GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
UpdateParcelWeightRequestParameter.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3 
5 
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.XmlRootElement;
10 import javax.xml.bind.annotation.XmlType;
11 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
12 import java.math.BigDecimal;
13 
14 
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "", propOrder = {
40  "trackID",
41  "weight"
42 })
43 @XmlRootElement(name = "UpdateParcelWeightRequestParameter")
45 
46  @XmlElement(name = "TrackID", required = true)
47  protected String trackID;
48  @XmlElement(name = "Weight", required = true, type = String.class)
49  @XmlJavaTypeAdapter(Adapter3.class)
50  protected BigDecimal weight;
51 
60  public String getTrackID() {
61  return trackID;
62  }
63 
72  public void setTrackID(String value) {
73  this.trackID = value;
74  }
75 
84  public BigDecimal getWeight() {
85  return weight;
86  }
87 
96  public void setWeight(BigDecimal value) {
97  this.weight = value;
98  }
99 
100 }