GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
CreateReturnService.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
35@XmlAccessorType(XmlAccessType.FIELD)
36@XmlType(name = "CreateReturnService", propOrder = {
37 "shopReturn",
38 "intercompany"
39})
40public class CreateReturnService {
41
42 @XmlElement(name = "ShopReturn")
43 protected ShopReturnService shopReturn;
44 @XmlElement(name = "Intercompany")
45 protected IntercompanyService intercompany;
46
55 public ShopReturnService getShopReturn() {
56 return shopReturn;
57 }
58
67 public void setShopReturn(ShopReturnService value) {
68 this.shopReturn = value;
69 }
70
80 return intercompany;
81 }
82
92 this.intercompany = value;
93 }
94
95}