GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
UpdateParcelWeightResponse.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 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "", propOrder = {
39  "updatedWeight"
40 })
41 @XmlRootElement(name = "UpdateParcelWeightResponse")
43 
44  @XmlElement(name = "UpdatedWeight", required = true, type = String.class)
45  @XmlJavaTypeAdapter(Adapter3.class)
46  protected BigDecimal updatedWeight;
47 
56  public BigDecimal getUpdatedWeight() {
57  return updatedWeight;
58  }
59 
68  public void setUpdatedWeight(BigDecimal value) {
69  this.updatedWeight = value;
70  }
71 
72 }