| 21409 |
amit.gupta |
1 |
package com.spice.profitmandi.web.res.order;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
|
|
|
5 |
public class CartPojo {
|
|
|
6 |
|
|
|
7 |
private Long id; // required
|
|
|
8 |
private List<CartLinePojo> lines; // required
|
|
|
9 |
private Double totalPrice; // required
|
|
|
10 |
private Double discountedPrice; // required
|
|
|
11 |
private String couponCode; // required
|
|
|
12 |
private Long pickupStoreId; // required
|
|
|
13 |
private String message; // required
|
|
|
14 |
private Boolean needInsuranceInfo;
|
|
|
15 |
private Boolean locationServiceable;
|
|
|
16 |
private String locationServiceableMessage;
|
|
|
17 |
|
|
|
18 |
public Long getId() {
|
|
|
19 |
return id;
|
|
|
20 |
}
|
|
|
21 |
public void setId(Long id) {
|
|
|
22 |
this.id = id;
|
|
|
23 |
}
|
|
|
24 |
public List<CartLinePojo> getLines() {
|
|
|
25 |
return lines;
|
|
|
26 |
}
|
|
|
27 |
public void setLines(List<CartLinePojo> lines) {
|
|
|
28 |
this.lines = lines;
|
|
|
29 |
}
|
|
|
30 |
|
|
|
31 |
public Double getTotalPrice() {
|
|
|
32 |
return totalPrice;
|
|
|
33 |
}
|
|
|
34 |
public void setTotalPrice(Double totalPrice) {
|
|
|
35 |
this.totalPrice = totalPrice;
|
|
|
36 |
}
|
|
|
37 |
public Double getDiscountedPrice() {
|
|
|
38 |
return discountedPrice;
|
|
|
39 |
}
|
|
|
40 |
public void setDiscountedPrice(Double discountedPrice) {
|
|
|
41 |
this.discountedPrice = discountedPrice;
|
|
|
42 |
}
|
|
|
43 |
public String getCouponCode() {
|
|
|
44 |
return couponCode;
|
|
|
45 |
}
|
|
|
46 |
public void setCouponCode(String couponCode) {
|
|
|
47 |
this.couponCode = couponCode;
|
|
|
48 |
}
|
|
|
49 |
public Long getPickupStoreId() {
|
|
|
50 |
return pickupStoreId;
|
|
|
51 |
}
|
|
|
52 |
public void setPickupStoreId(Long pickupStoreId) {
|
|
|
53 |
this.pickupStoreId = pickupStoreId;
|
|
|
54 |
}
|
|
|
55 |
public String getMessage() {
|
|
|
56 |
return message;
|
|
|
57 |
}
|
|
|
58 |
public void setMessage(String message) {
|
|
|
59 |
this.message = message;
|
|
|
60 |
}
|
|
|
61 |
public void setNeedInsuranceInfo(Boolean needInsuranceInfo) {
|
|
|
62 |
this.needInsuranceInfo = needInsuranceInfo;
|
|
|
63 |
}
|
|
|
64 |
public Boolean getNeedInsuranceInfo() {
|
|
|
65 |
return needInsuranceInfo;
|
|
|
66 |
}
|
|
|
67 |
public void setLocationServiceable(Boolean locationServiceable) {
|
|
|
68 |
this.locationServiceable = locationServiceable;
|
|
|
69 |
}
|
|
|
70 |
public Boolean getLocationServiceable() {
|
|
|
71 |
return locationServiceable;
|
|
|
72 |
}
|
|
|
73 |
public void setLocationServiceableMessage(String locationServiceableMessage) {
|
|
|
74 |
this.locationServiceableMessage = locationServiceableMessage;
|
|
|
75 |
}
|
|
|
76 |
public String getLocationServiceableMessage() {
|
|
|
77 |
return locationServiceableMessage;
|
|
|
78 |
}
|
|
|
79 |
|
|
|
80 |
}
|