Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20662 kshitij.so 1
 
2
package com.bluedart.entities;
3
 
4
import javax.xml.bind.JAXBElement;
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.XmlElementRef;
9
import javax.xml.bind.annotation.XmlSchemaType;
10
import javax.xml.bind.annotation.XmlType;
11
import javax.xml.datatype.XMLGregorianCalendar;
12
import com.bluedart.enums.ProductType;
13
 
14
 
15
/**
16
 * <p>Java class for Services complex type.
17
 * 
18
 * <p>The following schema fragment specifies the expected content contained within this class.
19
 * 
20
 * <pre>
21
 * &lt;complexType name="Services">
22
 *   &lt;complexContent>
23
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24
 *       &lt;sequence>
25
 *         &lt;element name="ActualWeight" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
26
 *         &lt;element name="CollectableAmount" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
27
 *         &lt;element name="Commodity" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration}CommodityDetail" minOccurs="0"/>
28
 *         &lt;element name="CreditReferenceNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29
 *         &lt;element name="DeclaredValue" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
30
 *         &lt;element name="Dimensions" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration}ArrayOfDimension" minOccurs="0"/>
31
 *         &lt;element name="InvoiceNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
32
 *         &lt;element name="PackType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
33
 *         &lt;element name="PickupDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
34
 *         &lt;element name="PickupTime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
35
 *         &lt;element name="PieceCount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
36
 *         &lt;element name="ProductCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
37
 *         &lt;element name="ProductType" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.Enums.AWBGeneration}ProductType" minOccurs="0"/>
38
 *         &lt;element name="SpecialInstruction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
39
 *         &lt;element name="SubProductCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
40
 *       &lt;/sequence>
41
 *     &lt;/restriction>
42
 *   &lt;/complexContent>
43
 * &lt;/complexType>
44
 * </pre>
45
 * 
46
 * 
47
 */
48
@XmlAccessorType(XmlAccessType.FIELD)
49
@XmlType(name = "Services", propOrder = {
50
    "actualWeight",
51
    "collectableAmount",
52
    "commodity",
53
    "creditReferenceNo",
54
    "declaredValue",
55
    "dimensions",
56
    "invoiceNo",
57
    "packType",
58
    "pickupDate",
59
    "pickupTime",
60
    "pieceCount",
61
    "productCode",
62
    "productType",
63
    "specialInstruction",
64
    "subProductCode"
65
})
66
public class Services {
67
 
68
    @XmlElement(name = "ActualWeight")
69
    protected Double actualWeight;
70
    @XmlElement(name = "CollectableAmount")
71
    protected Double collectableAmount;
72
    @XmlElementRef(name = "Commodity", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
73
    protected JAXBElement<CommodityDetail> commodity;
74
    @XmlElementRef(name = "CreditReferenceNo", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
75
    protected JAXBElement<String> creditReferenceNo;
76
    @XmlElement(name = "DeclaredValue")
77
    protected Double declaredValue;
78
    @XmlElementRef(name = "Dimensions", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
79
    protected JAXBElement<ArrayOfDimension> dimensions;
80
    @XmlElementRef(name = "InvoiceNo", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
81
    protected JAXBElement<String> invoiceNo;
82
    @XmlElementRef(name = "PackType", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
83
    protected JAXBElement<String> packType;
84
    @XmlElement(name = "PickupDate")
85
    @XmlSchemaType(name = "dateTime")
86
    protected XMLGregorianCalendar pickupDate;
87
    @XmlElementRef(name = "PickupTime", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
88
    protected JAXBElement<String> pickupTime;
89
    @XmlElement(name = "PieceCount")
90
    protected Integer pieceCount;
91
    @XmlElementRef(name = "ProductCode", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
92
    protected JAXBElement<String> productCode;
93
    @XmlElement(name = "ProductType")
94
    protected ProductType productType;
95
    @XmlElementRef(name = "SpecialInstruction", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
96
    protected JAXBElement<String> specialInstruction;
97
    @XmlElementRef(name = "SubProductCode", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
98
    protected JAXBElement<String> subProductCode;
99
 
100
    /**
101
     * Gets the value of the actualWeight property.
102
     * 
103
     * @return
104
     *     possible object is
105
     *     {@link Double }
106
     *     
107
     */
108
    public Double getActualWeight() {
109
        return actualWeight;
110
    }
111
 
112
    /**
113
     * Sets the value of the actualWeight property.
114
     * 
115
     * @param value
116
     *     allowed object is
117
     *     {@link Double }
118
     *     
119
     */
120
    public void setActualWeight(Double value) {
121
        this.actualWeight = value;
122
    }
123
 
124
    /**
125
     * Gets the value of the collectableAmount property.
126
     * 
127
     * @return
128
     *     possible object is
129
     *     {@link Double }
130
     *     
131
     */
132
    public Double getCollectableAmount() {
133
        return collectableAmount;
134
    }
135
 
136
    /**
137
     * Sets the value of the collectableAmount property.
138
     * 
139
     * @param value
140
     *     allowed object is
141
     *     {@link Double }
142
     *     
143
     */
144
    public void setCollectableAmount(Double value) {
145
        this.collectableAmount = value;
146
    }
147
 
148
    /**
149
     * Gets the value of the commodity property.
150
     * 
151
     * @return
152
     *     possible object is
153
     *     {@link JAXBElement }{@code <}{@link CommodityDetail }{@code >}
154
     *     
155
     */
156
    public JAXBElement<CommodityDetail> getCommodity() {
157
        return commodity;
158
    }
159
 
160
    /**
161
     * Sets the value of the commodity property.
162
     * 
163
     * @param value
164
     *     allowed object is
165
     *     {@link JAXBElement }{@code <}{@link CommodityDetail }{@code >}
166
     *     
167
     */
168
    public void setCommodity(JAXBElement<CommodityDetail> value) {
169
        this.commodity = value;
170
    }
171
 
172
    /**
173
     * Gets the value of the creditReferenceNo property.
174
     * 
175
     * @return
176
     *     possible object is
177
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
178
     *     
179
     */
180
    public JAXBElement<String> getCreditReferenceNo() {
181
        return creditReferenceNo;
182
    }
183
 
184
    /**
185
     * Sets the value of the creditReferenceNo property.
186
     * 
187
     * @param value
188
     *     allowed object is
189
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
190
     *     
191
     */
192
    public void setCreditReferenceNo(JAXBElement<String> value) {
193
        this.creditReferenceNo = value;
194
    }
195
 
196
    /**
197
     * Gets the value of the declaredValue property.
198
     * 
199
     * @return
200
     *     possible object is
201
     *     {@link Double }
202
     *     
203
     */
204
    public Double getDeclaredValue() {
205
        return declaredValue;
206
    }
207
 
208
    /**
209
     * Sets the value of the declaredValue property.
210
     * 
211
     * @param value
212
     *     allowed object is
213
     *     {@link Double }
214
     *     
215
     */
216
    public void setDeclaredValue(Double value) {
217
        this.declaredValue = value;
218
    }
219
 
220
    /**
221
     * Gets the value of the dimensions property.
222
     * 
223
     * @return
224
     *     possible object is
225
     *     {@link JAXBElement }{@code <}{@link ArrayOfDimension }{@code >}
226
     *     
227
     */
228
    public JAXBElement<ArrayOfDimension> getDimensions() {
229
        return dimensions;
230
    }
231
 
232
    /**
233
     * Sets the value of the dimensions property.
234
     * 
235
     * @param value
236
     *     allowed object is
237
     *     {@link JAXBElement }{@code <}{@link ArrayOfDimension }{@code >}
238
     *     
239
     */
240
    public void setDimensions(JAXBElement<ArrayOfDimension> value) {
241
        this.dimensions = value;
242
    }
243
 
244
    /**
245
     * Gets the value of the invoiceNo property.
246
     * 
247
     * @return
248
     *     possible object is
249
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
250
     *     
251
     */
252
    public JAXBElement<String> getInvoiceNo() {
253
        return invoiceNo;
254
    }
255
 
256
    /**
257
     * Sets the value of the invoiceNo property.
258
     * 
259
     * @param value
260
     *     allowed object is
261
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
262
     *     
263
     */
264
    public void setInvoiceNo(JAXBElement<String> value) {
265
        this.invoiceNo = value;
266
    }
267
 
268
    /**
269
     * Gets the value of the packType property.
270
     * 
271
     * @return
272
     *     possible object is
273
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
274
     *     
275
     */
276
    public JAXBElement<String> getPackType() {
277
        return packType;
278
    }
279
 
280
    /**
281
     * Sets the value of the packType property.
282
     * 
283
     * @param value
284
     *     allowed object is
285
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
286
     *     
287
     */
288
    public void setPackType(JAXBElement<String> value) {
289
        this.packType = value;
290
    }
291
 
292
    /**
293
     * Gets the value of the pickupDate property.
294
     * 
295
     * @return
296
     *     possible object is
297
     *     {@link XMLGregorianCalendar }
298
     *     
299
     */
300
    public XMLGregorianCalendar getPickupDate() {
301
        return pickupDate;
302
    }
303
 
304
    /**
305
     * Sets the value of the pickupDate property.
306
     * 
307
     * @param value
308
     *     allowed object is
309
     *     {@link XMLGregorianCalendar }
310
     *     
311
     */
312
    public void setPickupDate(XMLGregorianCalendar value) {
313
        this.pickupDate = value;
314
    }
315
 
316
    /**
317
     * Gets the value of the pickupTime property.
318
     * 
319
     * @return
320
     *     possible object is
321
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
322
     *     
323
     */
324
    public JAXBElement<String> getPickupTime() {
325
        return pickupTime;
326
    }
327
 
328
    /**
329
     * Sets the value of the pickupTime property.
330
     * 
331
     * @param value
332
     *     allowed object is
333
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
334
     *     
335
     */
336
    public void setPickupTime(JAXBElement<String> value) {
337
        this.pickupTime = value;
338
    }
339
 
340
    /**
341
     * Gets the value of the pieceCount property.
342
     * 
343
     * @return
344
     *     possible object is
345
     *     {@link Integer }
346
     *     
347
     */
348
    public Integer getPieceCount() {
349
        return pieceCount;
350
    }
351
 
352
    /**
353
     * Sets the value of the pieceCount property.
354
     * 
355
     * @param value
356
     *     allowed object is
357
     *     {@link Integer }
358
     *     
359
     */
360
    public void setPieceCount(Integer value) {
361
        this.pieceCount = value;
362
    }
363
 
364
    /**
365
     * Gets the value of the productCode property.
366
     * 
367
     * @return
368
     *     possible object is
369
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
370
     *     
371
     */
372
    public JAXBElement<String> getProductCode() {
373
        return productCode;
374
    }
375
 
376
    /**
377
     * Sets the value of the productCode property.
378
     * 
379
     * @param value
380
     *     allowed object is
381
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
382
     *     
383
     */
384
    public void setProductCode(JAXBElement<String> value) {
385
        this.productCode = value;
386
    }
387
 
388
    /**
389
     * Gets the value of the productType property.
390
     * 
391
     * @return
392
     *     possible object is
393
     *     {@link ProductType }
394
     *     
395
     */
396
    public ProductType getProductType() {
397
        return productType;
398
    }
399
 
400
    /**
401
     * Sets the value of the productType property.
402
     * 
403
     * @param value
404
     *     allowed object is
405
     *     {@link ProductType }
406
     *     
407
     */
408
    public void setProductType(ProductType value) {
409
        this.productType = value;
410
    }
411
 
412
    /**
413
     * Gets the value of the specialInstruction property.
414
     * 
415
     * @return
416
     *     possible object is
417
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
418
     *     
419
     */
420
    public JAXBElement<String> getSpecialInstruction() {
421
        return specialInstruction;
422
    }
423
 
424
    /**
425
     * Sets the value of the specialInstruction property.
426
     * 
427
     * @param value
428
     *     allowed object is
429
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
430
     *     
431
     */
432
    public void setSpecialInstruction(JAXBElement<String> value) {
433
        this.specialInstruction = value;
434
    }
435
 
436
    /**
437
     * Gets the value of the subProductCode property.
438
     * 
439
     * @return
440
     *     possible object is
441
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
442
     *     
443
     */
444
    public JAXBElement<String> getSubProductCode() {
445
        return subProductCode;
446
    }
447
 
448
    /**
449
     * Sets the value of the subProductCode property.
450
     * 
451
     * @param value
452
     *     allowed object is
453
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
454
     *     
455
     */
456
    public void setSubProductCode(JAXBElement<String> value) {
457
        this.subProductCode = value;
458
    }
459
 
460
}