| 21378 |
kshitij.so |
1 |
package com.spice.profitmandi.web.res;
|
|
|
2 |
|
|
|
3 |
public class CartResponse
|
|
|
4 |
{
|
|
|
5 |
private CartItems[] cartItems;
|
|
|
6 |
private int maxEstimate;
|
|
|
7 |
private long nonAccessoryQuantity;
|
|
|
8 |
private int cartMessageChanged;
|
|
|
9 |
private long totalQty;
|
|
|
10 |
private int cartMessageUndeliverable;
|
|
|
11 |
private double shippingCharge;
|
|
|
12 |
private CartMessages[] cartMessages;
|
|
|
13 |
private String pincode;
|
|
|
14 |
private int cartMessageOOS;
|
|
|
15 |
private String estimateString;
|
|
|
16 |
private boolean cod;
|
|
|
17 |
private double totalAmount;
|
|
|
18 |
private boolean hasAccessories;
|
|
|
19 |
private int cartMessagesMerged;
|
|
|
20 |
|
|
|
21 |
public CartItems[] getCartItems() {
|
|
|
22 |
return cartItems;
|
|
|
23 |
}
|
|
|
24 |
public void setCartItems(CartItems[] cartItems) {
|
|
|
25 |
this.cartItems = cartItems;
|
|
|
26 |
}
|
|
|
27 |
public int getMaxEstimate() {
|
|
|
28 |
return maxEstimate;
|
|
|
29 |
}
|
|
|
30 |
public void setMaxEstimate(int maxEstimate) {
|
|
|
31 |
this.maxEstimate = maxEstimate;
|
|
|
32 |
}
|
|
|
33 |
public long getNonAccessoryQuantity() {
|
|
|
34 |
return nonAccessoryQuantity;
|
|
|
35 |
}
|
|
|
36 |
public void setNonAccessoryQuantity(long nonAccessoryQuantity) {
|
|
|
37 |
this.nonAccessoryQuantity = nonAccessoryQuantity;
|
|
|
38 |
}
|
|
|
39 |
public int getCartMessageChanged() {
|
|
|
40 |
return cartMessageChanged;
|
|
|
41 |
}
|
|
|
42 |
public void setCartMessageChanged(int cartMessageChanged) {
|
|
|
43 |
this.cartMessageChanged = cartMessageChanged;
|
|
|
44 |
}
|
|
|
45 |
public long getTotalQty() {
|
|
|
46 |
return totalQty;
|
|
|
47 |
}
|
|
|
48 |
public void setTotalQty(long totalQty) {
|
|
|
49 |
this.totalQty = totalQty;
|
|
|
50 |
}
|
|
|
51 |
public int getCartMessageUndeliverable() {
|
|
|
52 |
return cartMessageUndeliverable;
|
|
|
53 |
}
|
|
|
54 |
public void setCartMessageUndeliverable(int cartMessageUndeliverable) {
|
|
|
55 |
this.cartMessageUndeliverable = cartMessageUndeliverable;
|
|
|
56 |
}
|
|
|
57 |
public double getShippingCharge() {
|
|
|
58 |
return shippingCharge;
|
|
|
59 |
}
|
|
|
60 |
public void setShippingCharge(double shippingCharge) {
|
|
|
61 |
this.shippingCharge = shippingCharge;
|
|
|
62 |
}
|
|
|
63 |
public CartMessages[] getCartMessages() {
|
|
|
64 |
return cartMessages;
|
|
|
65 |
}
|
|
|
66 |
public void setCartMessages(CartMessages[] cartMessages) {
|
|
|
67 |
this.cartMessages = cartMessages;
|
|
|
68 |
}
|
|
|
69 |
public String getPincode() {
|
|
|
70 |
return pincode;
|
|
|
71 |
}
|
|
|
72 |
public void setPincode(String pincode) {
|
|
|
73 |
this.pincode = pincode;
|
|
|
74 |
}
|
|
|
75 |
public int getCartMessageOOS() {
|
|
|
76 |
return cartMessageOOS;
|
|
|
77 |
}
|
|
|
78 |
public void setCartMessageOOS(int cartMessageOOS) {
|
|
|
79 |
this.cartMessageOOS = cartMessageOOS;
|
|
|
80 |
}
|
|
|
81 |
public String getEstimateString() {
|
|
|
82 |
return estimateString;
|
|
|
83 |
}
|
|
|
84 |
public void setEstimateString(String estimateString) {
|
|
|
85 |
this.estimateString = estimateString;
|
|
|
86 |
}
|
|
|
87 |
public boolean isCod() {
|
|
|
88 |
return cod;
|
|
|
89 |
}
|
|
|
90 |
public void setCod(boolean cod) {
|
|
|
91 |
this.cod = cod;
|
|
|
92 |
}
|
|
|
93 |
public double getTotalAmount() {
|
|
|
94 |
return totalAmount;
|
|
|
95 |
}
|
|
|
96 |
public void setTotalAmount(double totalAmount) {
|
|
|
97 |
this.totalAmount = totalAmount;
|
|
|
98 |
}
|
|
|
99 |
public boolean isHasAccessories() {
|
|
|
100 |
return hasAccessories;
|
|
|
101 |
}
|
|
|
102 |
public void setHasAccessories(boolean hasAccessories) {
|
|
|
103 |
this.hasAccessories = hasAccessories;
|
|
|
104 |
}
|
|
|
105 |
public int getCartMessagesMerged() {
|
|
|
106 |
return cartMessagesMerged;
|
|
|
107 |
}
|
|
|
108 |
public void setCartMessagesMerged(int cartMessagesMerged) {
|
|
|
109 |
this.cartMessagesMerged = cartMessagesMerged;
|
|
|
110 |
|
|
|
111 |
}
|
|
|
112 |
|
|
|
113 |
}
|