Subversion Repositories SmartDukaan

Rev

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