GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
gls_group/fpcs/v1/shipmentprocessing/types/ReturnOptions.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.shipmentprocessing.types;
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
34@XmlAccessorType(XmlAccessType.FIELD)
35@XmlType(name = "ReturnOptions", propOrder = {
36 "returnPrintData",
37 "returnRoutingInfo"
38})
39public class ReturnOptions {
40
41 @XmlElement(name = "ReturnPrintData", defaultValue = "true")
42 protected Boolean returnPrintData;
43 @XmlElement(name = "ReturnRoutingInfo", defaultValue = "true")
44 protected Boolean returnRoutingInfo;
45
54 public Boolean isReturnPrintData() {
55 return returnPrintData;
56 }
57
66 public void setReturnPrintData(Boolean value) {
67 this.returnPrintData = value;
68 }
69
78 public Boolean isReturnRoutingInfo() {
79 return returnRoutingInfo;
80 }
81
90 public void setReturnRoutingInfo(Boolean value) {
91 this.returnRoutingInfo = value;
92 }
93
94}