Subversion Repositories SmartDukaan

Rev

Rev 10140 | Rev 12974 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9073 vikram.rag 1
package in.shop2020.serving.model;
2
 
3
import java.util.List;
4
 
5
import javax.xml.datatype.XMLGregorianCalendar;
6
 
7
import com.google.gson.annotations.SerializedName;
8
 
9
 
10
public class Order {
11
	@SerializedName("status")
12
    public String statusDateMessage;
13
    int sla;
14
    public String hasTickets;
15
 
16
    public int returnableQuantity;
17
    public String tickets;
9651 manish.sha 18
    public String imei;
19
    public String invoice;
9073 vikram.rag 20
    public XMLGregorianCalendar invoiceDate;
21
    public short invoiceAmount;
22
    public float taxAmount;
23
    public String weight;
24
    @SerializedName("external_id")
25
    public String externalId;
26
    @SerializedName("order_item_id")
27
    public String orderItemId;
10140 vikram.rag 28
    public String sku;
9073 vikram.rag 29
    public String title;
30
    @SerializedName("listing_id")
31
    public String listingId;
32
    @SerializedName("product_image")
33
    public String productImage;
34
    public int quantity;
35
    @SerializedName("product_id")
36
    public String productId;
37
    public String freebie;
38
    @SerializedName("created_date")
39
    public String createdDate;
40
    @SerializedName("created_time")
41
    public String createdTime;
42
    @SerializedName("list_price")
43
    public double listPrice;
44
    @SerializedName("shipping_fees")
45
    public double shippingFees;
46
    public double emi;
47
    public double octroi;
48
    @SerializedName("total_price")
49
    public double totalPrice;
50
    @SerializedName("customer_name")	
51
    public String customerName;
52
    @SerializedName("shipping_address")
53
    public String shippingAddress;
54
    @SerializedName("shipping_address_name")
55
    public String shippingAddressName;
56
    @SerializedName("shipping_address_line1")
57
    public String shippingAddressLine1;
58
    @SerializedName("shipping_address_line2")
59
    public String shippingAddressLine2;
60
    @SerializedName("shipping_address_city")
61
    public String shippingAddressCity;
62
    @SerializedName("shipping_address_state")
63
    public String shippingAddressState;
64
    @SerializedName("shipping_address_pincode")
65
    public String shippingAddressPincode;
12589 manish.sha 66
    public String phone;
9073 vikram.rag 67
    public String status;
9104 vikram.rag 68
    @SerializedName("statusLabel")
9073 vikram.rag 69
    public String statusLabel;
9104 vikram.rag 70
    @SerializedName("tracking_id")
9073 vikram.rag 71
    public String trackingId;
72
    public List<String> actions;
73
    @SerializedName("flipkart_item_link")
74
    public String flipkartItemLink;
75
    @SerializedName("modified_date")
76
    public String modifiedDate;
77
    public String trackingHash;
78
    @SerializedName("cancel_reason")
79
    public String cancelReason;
80
    @SerializedName("cancel_sub_reason")
81
    public String cancelSubReason;
82
    public String returnReason;
83
    public String returnComment;
9104 vikram.rag 84
    public String pickup_by_date;
12589 manish.sha 85
    //public List<FreebieItem> freebie_items;
86
    public String service_profile;
9073 vikram.rag 87
 
9104 vikram.rag 88
	public String getPickup_by_date() {
89
		return pickup_by_date;
90
	}
91
 
92
	public void setPickup_by_date(String pickup_by_date) {
93
		this.pickup_by_date = pickup_by_date;
94
	}
95
 
96
	public int getSla() {
9073 vikram.rag 97
		return sla;
98
	}
99
 
100
	public void setSla(int sla) {
101
		this.sla = sla;
102
	}
103
 
104
	/**
105
     * Gets the value of the statusDateMessage property.
106
     * 
107
     * @return
108
     *     possible object is
109
     *     {@link String }
110
     *     
111
     */
112
    public String getStatusDateMessage() {
113
        return statusDateMessage;
114
    }
115
 
116
    /**
117
     * Sets the value of the statusDateMessage property.
118
     * 
119
     * @param value
120
     *     allowed object is
121
     *     {@link String }
122
     *     
123
     */
124
    public void setStatusDateMessage(String value) {
125
        this.statusDateMessage = value;
126
    }
127
 
128
    /**
129
     * Gets the value of the hasTickets property.
130
     * 
131
     * @return
132
     *     possible object is
133
     *     {@link String }
134
     *     
135
     */
136
    public String getHasTickets() {
137
        return hasTickets;
138
    }
139
 
140
    /**
141
     * Sets the value of the hasTickets property.
142
     * 
143
     * @param value
144
     *     allowed object is
145
     *     {@link String }
146
     *     
147
     */
148
    public void setHasTickets(String value) {
149
        this.hasTickets = value;
150
    }
151
 
152
    /**
153
     * Gets the value of the returnableQuantity property.
154
     * 
155
     */
156
    public int getReturnableQuantity() {
157
        return returnableQuantity;
158
    }
159
 
160
    /**
161
     * Sets the value of the returnableQuantity property.
162
     * 
163
     */
164
    public void setReturnableQuantity(int value) {
165
        this.returnableQuantity = value;
166
    }
167
 
168
    /**
169
     * Gets the value of the tickets property.
170
     * 
171
     * @return
172
     *     possible object is
173
     *     {@link String }
174
     *     
175
     */
176
    public String getTickets() {
177
        return tickets;
178
    }
179
 
180
    /**
181
     * Sets the value of the tickets property.
182
     * 
183
     * @param value
184
     *     allowed object is
185
     *     {@link String }
186
     *     
187
     */
188
    public void setTickets(String value) {
189
        this.tickets = value;
190
    }
191
 
192
    /**
193
     * Gets the value of the imei property.
194
     * 
195
     */
9651 manish.sha 196
    public String getImei() {
9073 vikram.rag 197
        return imei;
198
    }
199
 
200
    /**
201
     * Sets the value of the imei property.
202
     * 
203
     */
9651 manish.sha 204
    public void setImei(String value) {
9073 vikram.rag 205
        this.imei = value;
206
    }
207
 
208
    /**
209
     * Gets the value of the invoice property.
210
     * 
211
     */
9651 manish.sha 212
    public String getInvoice() {
9073 vikram.rag 213
        return invoice;
214
    }
215
 
216
    /**
217
     * Sets the value of the invoice property.
218
     * 
219
     */
9651 manish.sha 220
    public void setInvoice(String value) {
9073 vikram.rag 221
        this.invoice = value;
222
    }
223
 
224
    /**
225
     * Gets the value of the invoiceDate property.
226
     * 
227
     * @return
228
     *     possible object is
229
     *     {@link XMLGregorianCalendar }
230
     *     
231
     */
232
    public XMLGregorianCalendar getInvoiceDate() {
233
        return invoiceDate;
234
    }
235
 
236
    /**
237
     * Sets the value of the invoiceDate property.
238
     * 
239
     * @param value
240
     *     allowed object is
241
     *     {@link XMLGregorianCalendar }
242
     *     
243
     */
244
    public void setInvoiceDate(XMLGregorianCalendar value) {
245
        this.invoiceDate = value;
246
    }
247
 
248
    /**
249
     * Gets the value of the invoiceAmount property.
250
     * 
251
     */
252
    public short getInvoiceAmount() {
253
        return invoiceAmount;
254
    }
255
 
256
    /**
257
     * Sets the value of the invoiceAmount property.
258
     * 
259
     */
260
    public void setInvoiceAmount(short value) {
261
        this.invoiceAmount = value;
262
    }
263
 
264
    /**
265
     * Gets the value of the taxAmount property.
266
     * 
267
     */
268
    public float getTaxAmount() {
269
        return taxAmount;
270
    }
271
 
272
    /**
273
     * Sets the value of the taxAmount property.
274
     * 
275
     */
276
    public void setTaxAmount(float value) {
277
        this.taxAmount = value;
278
    }
279
 
280
    /**
281
     * Gets the value of the weight property.
282
     * 
283
     * @return
284
     *     possible object is
285
     *     {@link String }
286
     *     
287
     */
288
    public String getWeight() {
289
        return weight;
290
    }
291
 
292
    /**
293
     * Sets the value of the weight property.
294
     * 
295
     * @param value
296
     *     allowed object is
297
     *     {@link String }
298
     *     
299
     */
300
    public void setWeight(String value) {
301
        this.weight = value;
302
    }
303
 
304
    /**
305
     * Gets the value of the externalId property.
306
     * 
307
     * @return
308
     *     possible object is
309
     *     {@link String }
310
     *     
311
     */
312
    public String getExternalId() {
313
        return externalId;
314
    }
315
 
316
    /**
317
     * Sets the value of the externalId property.
318
     * 
319
     * @param value
320
     *     allowed object is
321
     *     {@link String }
322
     *     
323
     */
324
    public void setExternalId(String value) {
325
        this.externalId = value;
326
    }
327
 
328
    /**
329
     * Gets the value of the orderItemId property.
330
     * 
331
     */
332
    public String getOrderItemId() {
333
        return orderItemId;
334
    }
335
 
336
    /**
337
     * Sets the value of the orderItemId property.
338
     * 
339
     */
340
    public void setOrderItemId(String value) {
341
        this.orderItemId = value;
342
    }
343
 
344
    /**
345
     * Gets the value of the title property.
346
     * 
347
     * @return
348
     *     possible object is
349
     *     {@link String }
350
     *     
351
     */
352
    public String getTitle() {
353
        return title;
354
    }
355
 
356
    /**
357
     * Sets the value of the title property.
358
     * 
359
     * @param value
360
     *     allowed object is
361
     *     {@link String }
362
     *     
363
     */
364
    public void setTitle(String value) {
365
        this.title = value;
366
    }
367
 
368
    /**
369
     * Gets the value of the listingId property.
370
     * 
371
     * @return
372
     *     possible object is
373
     *     {@link String }
374
     *     
375
     */
376
    public String getListingId() {
377
        return listingId;
378
    }
379
 
380
    /**
381
     * Sets the value of the listingId property.
382
     * 
383
     * @param value
384
     *     allowed object is
385
     *     {@link String }
386
     *     
387
     */
388
    public void setListingId(String value) {
389
        this.listingId = value;
390
    }
391
 
392
    /**
393
     * Gets the value of the productImage property.
394
     * 
395
     * @return
396
     *     possible object is
397
     *     {@link String }
398
     *     
399
     */
400
    public String getProductImage() {
401
        return productImage;
402
    }
403
 
404
    /**
405
     * Sets the value of the productImage property.
406
     * 
407
     * @param value
408
     *     allowed object is
409
     *     {@link String }
410
     *     
411
     */
412
    public void setProductImage(String value) {
413
        this.productImage = value;
414
    }
415
 
416
    /**
417
     * Gets the value of the quantity property.
418
     * 
419
     */
420
    public int getQuantity() {
421
        return quantity;
422
    }
423
 
424
    /**
425
     * Sets the value of the quantity property.
426
     * 
427
     */
428
    public void setQuantity(int value) {
429
        this.quantity = value;
430
    }
431
 
432
    /**
433
     * Gets the value of the productId property.
434
     * 
435
     * @return
436
     *     possible object is
437
     *     {@link String }
438
     *     
439
     */
440
    public String getProductId() {
441
        return productId;
442
    }
443
 
444
    /**
445
     * Sets the value of the productId property.
446
     * 
447
     * @param value
448
     *     allowed object is
449
     *     {@link String }
450
     *     
451
     */
452
    public void setProductId(String value) {
453
        this.productId = value;
454
    }
455
 
456
    /**
457
     * Gets the value of the freebie property.
458
     * 
459
     * @return
460
     *     possible object is
461
     *     {@link String }
462
     *     
463
     */
464
    public String getFreebie() {
465
        return freebie;
466
    }
467
 
468
    /**
469
     * Sets the value of the freebie property.
470
     * 
471
     * @param value
472
     *     allowed object is
473
     *     {@link String }
474
     *     
475
     */
476
    public void setFreebie(String value) {
477
        this.freebie = value;
478
    }
479
 
480
    /**
481
     * Gets the value of the sku property.
482
     * 
483
     */
10140 vikram.rag 484
    public String getSku() {
9073 vikram.rag 485
        return sku;
486
    }
487
 
488
    /**
489
     * Sets the value of the sku property.
490
     * 
491
     */
10140 vikram.rag 492
    public void setSku(String value) {
9073 vikram.rag 493
        this.sku = value;
494
    }
495
 
496
    /**
497
     * Gets the value of the createdDate property.
498
     * 
499
     * @return
500
     *     possible object is
501
     *     {@link String }
502
     *     
503
     */
504
    public String getCreatedDate() {
505
        return createdDate;
506
    }
507
 
508
    /**
509
     * Sets the value of the createdDate property.
510
     * 
511
     * @param value
512
     *     allowed object is
513
     *     {@link String }
514
     *     
515
     */
516
    public void setCreatedDate(String value) {
517
        this.createdDate = value;
518
    }
519
 
520
    /**
521
     * Gets the value of the createdTime property.
522
     * 
523
     * @return
524
     *     possible object is
525
     *     {@link String }
526
     *     
527
     */
528
    public String getCreatedTime() {
529
        return createdTime;
530
    }
531
 
532
    /**
533
     * Sets the value of the createdTime property.
534
     * 
535
     * @param value
536
     *     allowed object is
537
     *     {@link String }
538
     *     
539
     */
540
    public void setCreatedTime(String value) {
541
        this.createdTime = value;
542
    }
543
 
544
    /**
545
     * Gets the value of the listPrice property.
546
     * 
547
     */
548
    public double getListPrice() {
549
        return listPrice;
550
    }
551
 
552
    /**
553
     * Sets the value of the listPrice property.
554
     * 
555
     */
556
    public void setListPrice(double value) {
557
        this.listPrice = value;
558
    }
559
 
560
    /**
561
     * Gets the value of the shippingFees property.
562
     * 
563
     */
564
    public double getShippingFees() {
565
        return shippingFees;
566
    }
567
 
568
    /**
569
     * Sets the value of the shippingFees property.
570
     * 
571
     */
572
    public void setShippingFees(double value) {
573
        this.shippingFees = value;
574
    }
575
 
576
    /**
577
     * Gets the value of the emi property.
578
     * 
579
     */
580
    public double getEmi() {
581
        return emi;
582
    }
583
 
584
    /**
585
     * Sets the value of the emi property.
586
     * 
587
     */
588
    public void setEmi(double value) {
589
        this.emi = value;
590
    }
591
 
592
    /**
593
     * Gets the value of the octroi property.
594
     * 
595
     */
596
    public double getOctroi() {
597
        return octroi;
598
    }
599
 
600
    /**
601
     * Sets the value of the octroi property.
602
     * 
603
     */
604
    public void setOctroi(double value) {
605
        this.octroi = value;
606
    }
607
 
608
    /**
609
     * Gets the value of the totalPrice property.
610
     * 
611
     */
612
    public double getTotalPrice() {
613
        return totalPrice;
614
    }
615
 
616
    /**
617
     * Sets the value of the totalPrice property.
618
     * 
619
     */
620
    public void setTotalPrice(double value) {
621
        this.totalPrice = value;
622
    }
623
 
624
    /**
625
     * Gets the value of the customerName property.
626
     * 
627
     * @return
628
     *     possible object is
629
     *     {@link String }
630
     *     
631
     */
632
    public String getCustomerName() {
633
        return customerName;
634
    }
635
 
636
    /**
637
     * Sets the value of the customerName property.
638
     * 
639
     * @param value
640
     *     allowed object is
641
     *     {@link String }
642
     *     
643
     */
644
    public void setCustomerName(String value) {
645
        this.customerName = value;
646
    }
647
 
648
    /**
649
     * Gets the value of the shippingAddress property.
650
     * 
651
     * @return
652
     *     possible object is
653
     *     {@link String }
654
     *     
655
     */
656
    public String getShippingAddress() {
657
        return shippingAddress;
658
    }
659
 
660
    /**
661
     * Sets the value of the shippingAddress property.
662
     * 
663
     * @param value
664
     *     allowed object is
665
     *     {@link String }
666
     *     
667
     */
668
    public void setShippingAddress(String value) {
669
        this.shippingAddress = value;
670
    }
671
 
672
    /**
673
     * Gets the value of the shippingAddressName property.
674
     * 
675
     * @return
676
     *     possible object is
677
     *     {@link String }
678
     *     
679
     */
680
    public String getShippingAddressName() {
681
        return shippingAddressName;
682
    }
683
 
684
    /**
685
     * Sets the value of the shippingAddressName property.
686
     * 
687
     * @param value
688
     *     allowed object is
689
     *     {@link String }
690
     *     
691
     */
692
    public void setShippingAddressName(String value) {
693
        this.shippingAddressName = value;
694
    }
695
 
696
    /**
697
     * Gets the value of the shippingAddressLine1 property.
698
     * 
699
     * @return
700
     *     possible object is
701
     *     {@link String }
702
     *     
703
     */
704
    public String getShippingAddressLine1() {
705
        return shippingAddressLine1;
706
    }
707
 
708
    /**
709
     * Sets the value of the shippingAddressLine1 property.
710
     * 
711
     * @param value
712
     *     allowed object is
713
     *     {@link String }
714
     *     
715
     */
716
    public void setShippingAddressLine1(String value) {
717
        this.shippingAddressLine1 = value;
718
    }
719
 
720
    /**
721
     * Gets the value of the shippingAddressLine2 property.
722
     * 
723
     * @return
724
     *     possible object is
725
     *     {@link String }
726
     *     
727
     */
728
    public String getShippingAddressLine2() {
729
        return shippingAddressLine2;
730
    }
731
 
732
    /**
733
     * Sets the value of the shippingAddressLine2 property.
734
     * 
735
     * @param value
736
     *     allowed object is
737
     *     {@link String }
738
     *     
739
     */
740
    public void setShippingAddressLine2(String value) {
741
        this.shippingAddressLine2 = value;
742
    }
743
 
744
    /**
745
     * Gets the value of the shippingAddressCity property.
746
     * 
747
     * @return
748
     *     possible object is
749
     *     {@link String }
750
     *     
751
     */
752
    public String getShippingAddressCity() {
753
        return shippingAddressCity;
754
    }
755
 
756
    /**
757
     * Sets the value of the shippingAddressCity property.
758
     * 
759
     * @param value
760
     *     allowed object is
761
     *     {@link String }
762
     *     
763
     */
764
    public void setShippingAddressCity(String value) {
765
        this.shippingAddressCity = value;
766
    }
767
 
768
    /**
769
     * Gets the value of the shippingAddressState property.
770
     * 
771
     * @return
772
     *     possible object is
773
     *     {@link String }
774
     *     
775
     */
776
    public String getShippingAddressState() {
777
        return shippingAddressState;
778
    }
779
 
780
    /**
781
     * Sets the value of the shippingAddressState property.
782
     * 
783
     * @param value
784
     *     allowed object is
785
     *     {@link String }
786
     *     
787
     */
788
    public void setShippingAddressState(String value) {
789
        this.shippingAddressState = value;
790
    }
791
 
792
    /**
793
     * Gets the value of the shippingAddressPincode property.
794
     * 
795
     */
796
    public String getShippingAddressPincode() {
797
        return shippingAddressPincode;
798
    }
799
 
800
    /**
801
     * Sets the value of the shippingAddressPincode property.
802
     * 
803
     */
804
    public void setShippingAddressPincode(String value) {
805
        this.shippingAddressPincode = value;
806
    }
807
 
808
    /**
809
     * Gets the value of the phone property.
810
     * 
811
     */
12589 manish.sha 812
    public String getPhone() {
9073 vikram.rag 813
        return phone;
814
    }
12589 manish.sha 815
 
9073 vikram.rag 816
    /**
817
     * Sets the value of the phone property.
818
     * 
819
     */
12589 manish.sha 820
    public void setPhone(String value) {
9073 vikram.rag 821
        this.phone = value;
12589 manish.sha 822
    }
9073 vikram.rag 823
 
824
    /**
825
     * Gets the value of the status property.
826
     * 
827
     * @return
828
     *     possible object is
829
     *     {@link String }
830
     *     
831
     */
832
    public String getStatus() {
833
        return status;
834
    }
835
 
836
    /**
837
     * Sets the value of the status property.
838
     * 
839
     * @param value
840
     *     allowed object is
841
     *     {@link String }
842
     *     
843
     */
844
    public void setStatus(String value) {
845
        this.status = value;
846
    }
847
 
848
    /**
849
     * Gets the value of the statusLabel property.
850
     * 
851
     * @return
852
     *     possible object is
853
     *     {@link String }
854
     *     
855
     */
856
    public String getStatusLabel() {
857
        return statusLabel;
858
    }
859
 
860
    /**
861
     * Sets the value of the statusLabel property.
862
     * 
863
     * @param value
864
     *     allowed object is
865
     *     {@link String }
866
     *     
867
     */
868
    public void setStatusLabel(String value) {
869
        this.statusLabel = value;
870
    }
871
 
872
    /**
873
     * Gets the value of the trackingId property.
874
     * 
875
     * @return
876
     *     possible object is
877
     *     {@link String }
878
     *     
879
     */
880
    public String getTrackingId() {
881
        return trackingId;
882
    }
883
 
884
    /**
885
     * Sets the value of the trackingId property.
886
     * 
887
     * @param value
888
     *     allowed object is
889
     *     {@link String }
890
     *     
891
     */
892
    public void setTrackingId(String value) {
893
        this.trackingId = value;
894
    }
895
 
896
    /**
897
     * Gets the value of the actions property.
898
     * 
899
     * @return
900
     *     possible object is
901
     *     {@link String }
902
     *     
903
     */
904
    public List<String> getActions() {
905
        return actions;
906
    }
907
 
908
    /**
909
     * Sets the value of the actions property.
910
     * 
911
     * @param value
912
     *     allowed object is
913
     *     {@link String }
914
     *     
915
     */
916
    public void setActions(List<String> value) {
917
        this.actions = value;
918
    }
919
 
920
    /**
921
     * Gets the value of the flipkartItemLink property.
922
     * 
923
     * @return
924
     *     possible object is
925
     *     {@link String }
926
     *     
927
     */
928
    public String getFlipkartItemLink() {
929
        return flipkartItemLink;
930
    }
931
 
932
    /**
933
     * Sets the value of the flipkartItemLink property.
934
     * 
935
     * @param value
936
     *     allowed object is
937
     *     {@link String }
938
     *     
939
     */
940
    public void setFlipkartItemLink(String value) {
941
        this.flipkartItemLink = value;
942
    }
943
 
944
    /**
945
     * Gets the value of the modifiedDate property.
946
     * 
947
     * @return
948
     *     possible object is
949
     *     {@link String }
950
     *     
951
     */
952
    public String getModifiedDate() {
953
        return modifiedDate;
954
    }
955
 
956
    /**
957
     * Sets the value of the modifiedDate property.
958
     * 
959
     * @param value
960
     *     allowed object is
961
     *     {@link String }
962
     *     
963
     */
964
    public void setModifiedDate(String value) {
965
        this.modifiedDate = value;
966
    }
967
 
968
    /**
969
     * Gets the value of the trackingHash property.
970
     * 
971
     * @return
972
     *     possible object is
973
     *     {@link String }
974
     *     
975
     */
976
    public String getTrackingHash() {
977
        return trackingHash;
978
    }
979
 
980
    /**
981
     * Sets the value of the trackingHash property.
982
     * 
983
     * @param value
984
     *     allowed object is
985
     *     {@link String }
986
     *     
987
     */
988
    public void setTrackingHash(String value) {
989
        this.trackingHash = value;
990
    }
991
 
992
    /**
993
     * Gets the value of the cancelReason property.
994
     * 
995
     * @return
996
     *     possible object is
997
     *     {@link String }
998
     *     
999
     */
1000
    public String getCancelReason() {
1001
        return cancelReason;
1002
    }
1003
 
1004
    /**
1005
     * Sets the value of the cancelReason property.
1006
     * 
1007
     * @param value
1008
     *     allowed object is
1009
     *     {@link String }
1010
     *     
1011
     */
1012
    public void setCancelReason(String value) {
1013
        this.cancelReason = value;
1014
    }
1015
 
1016
    /**
1017
     * Gets the value of the cancelSubReason property.
1018
     * 
1019
     * @return
1020
     *     possible object is
1021
     *     {@link String }
1022
     *     
1023
     */
1024
    public String getCancelSubReason() {
1025
        return cancelSubReason;
1026
    }
1027
 
1028
    /**
1029
     * Sets the value of the cancelSubReason property.
1030
     * 
1031
     * @param value
1032
     *     allowed object is
1033
     *     {@link String }
1034
     *     
1035
     */
1036
    public void setCancelSubReason(String value) {
1037
        this.cancelSubReason = value;
1038
    }
1039
 
1040
    /**
1041
     * Gets the value of the returnReason property.
1042
     * 
1043
     * @return
1044
     *     possible object is
1045
     *     {@link String }
1046
     *     
1047
     */
1048
    public String getReturnReason() {
1049
        return returnReason;
1050
    }
1051
 
1052
    /**
1053
     * Sets the value of the returnReason property.
1054
     * 
1055
     * @param value
1056
     *     allowed object is
1057
     *     {@link String }
1058
     *     
1059
     */
1060
    public void setReturnReason(String value) {
1061
        this.returnReason = value;
1062
    }
1063
 
1064
    /**
1065
     * Gets the value of the returnComment property.
1066
     * 
1067
     * @return
1068
     *     possible object is
1069
     *     {@link String }
1070
     *     
1071
     */
1072
    public String getReturnComment() {
1073
        return returnComment;
1074
    }
1075
 
1076
    /**
1077
     * Sets the value of the returnComment property.
1078
     * 
1079
     * @param value
1080
     *     allowed object is
1081
     *     {@link String }
1082
     *     
1083
     */
1084
    public void setReturnComment(String value) {
1085
        this.returnComment = value;
1086
    }
1087
 
12589 manish.sha 1088
    /**
1089
	 * @return the service_profile
1090
	 */
1091
	public String getService_profile() {
1092
		return service_profile;
1093
	}
1094
 
1095
	/**
1096
	 * @param service_profile the service_profile to set
1097
	 */
1098
	public void setService_profile(String service_profile) {
1099
		this.service_profile = service_profile;
1100
	}
1101
 
1102
	/**
1103
	 * @return the freebie_items
1104
	 */
1105
	/*public List<FreebieItem> getFreebie_items() {
1106
		return freebie_items;
1107
	}*/
1108
 
1109
	/**
1110
	 * @param freebie_items the freebie_items to set
1111
	 */
1112
	/*public void setFreebie_items(List<FreebieItem> freebie_items) {
1113
		this.freebie_items = freebie_items;
1114
	}*/
9073 vikram.rag 1115
}