GLS ShipIT  3.3.20
GLS ShipIT - SOAP services
UpdateParcelWeightResponse.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3 
4 import java.math.BigDecimal;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlRootElement;
9 import javax.xml.bind.annotation.XmlSchemaType;
10 import javax.xml.bind.annotation.XmlType;
11 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
13 
14 
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "", propOrder = {
41  "updatedWeight"
42 })
43 @XmlRootElement(name = "UpdateParcelWeightResponse")
45 
46  @XmlElement(name = "UpdatedWeight", required = true, type = String.class)
47  @XmlJavaTypeAdapter(Adapter1 .class)
48  @XmlSchemaType(name = "decimal")
49  protected BigDecimal updatedWeight;
50 
59  public BigDecimal getUpdatedWeight() {
60  return updatedWeight;
61  }
62 
71  public void setUpdatedWeight(BigDecimal value) {
72  this.updatedWeight = value;
73  }
74 
75 }