GLS ShipIT  3.5.15
GLS ShipIT - SOAP services
CreateReturnService.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
3 
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlType;
8 
9 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "CreateReturnService", propOrder = {
37  "shopReturn",
38  "intercompany"
39 })
40 public 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 
91  public void setIntercompany(IntercompanyService value) {
92  this.intercompany = value;
93  }
94 
95 }