Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
9637 amit.gupta 1
package in.shop2020.mobileapi.serving.pojos;
2
 
9793 amit.gupta 3
import in.shop2020.model.v1.user.Address;
9637 amit.gupta 4
 
9793 amit.gupta 5
import java.util.List;
6
 
7
 
9642 amit.gupta 8
public class OrderPojo {
9637 amit.gupta 9
	private long orderId;
9772 amit.gupta 10
	private String unitPrice;
11
	private String totalAmount;
12
	private String gvAmount;
13
	private String dataProtectionAmount;
14
	private String insuranceAmount;
15
	private String itemName;
16
	private int quantity;
9637 amit.gupta 17
	private String orderedOn;
9772 amit.gupta 18
	private String promisedDelivery;
19
	private String firstDeliveryAttempted;
9637 amit.gupta 20
	private String courierUrl;
21
	private String orderUrl;
22
	private String status;
23
	private String courierName;
24
	private String awbNumber;
9793 amit.gupta 25
	private AddressPojo shippingAddress;
26
	private long addressId;
27
	private List<AddressPojo> allAddresses;
28
	private boolean initiateCancellable;
29
	private boolean requestCancellable;
9637 amit.gupta 30
	public void setOrderId(long orderId) {
31
		this.orderId = orderId;
32
	}
33
	public long getOrderId() {
34
		return orderId;
35
	}
36
	public void setOrderedOn(String orderedOn) {
37
		this.orderedOn = orderedOn;
38
	}
39
	public String getOrderedOn() {
40
		return orderedOn;
41
	}
42
 
43
	public void setStatus(String status) {
44
		this.status = status;
45
	}
46
	public String getStatus() {
47
		return status;
48
	}
49
	public void setCourierName(String courierName) {
50
		this.courierName = courierName;
51
	}
52
	public String getCourierName() {
53
		return courierName;
54
	}
55
	public void setAwbNumber(String awbNumber) {
56
		this.awbNumber = awbNumber;
57
	}
58
	public String getAwbNumber() {
59
		return awbNumber;
60
	}
61
	public void setCourierUrl(String courierUrl) {
62
		this.courierUrl = courierUrl;
63
	}
64
	public String getCourierUrl() {
65
		return courierUrl;
66
	}
67
	public void setOrderUrl(String orderUrl) {
68
		this.orderUrl = orderUrl;
69
	}
70
	public String getOrderUrl() {
71
		return orderUrl;
72
	}
9772 amit.gupta 73
 
74
	public void setItemName(String itemName) {
75
		this.itemName = itemName;
9637 amit.gupta 76
	}
9772 amit.gupta 77
	public String getItemName() {
78
		return itemName;
79
	}
80
	public void setQuantity(int quantity) {
81
		this.quantity = quantity;
82
	}
83
	public int getQuantity() {
84
		return quantity;
85
	}
86
	public void setPromisedDelivery(String promisedDelivery) {
87
		this.promisedDelivery = promisedDelivery;
88
	}
89
	public String getPromisedDelivery() {
90
		return promisedDelivery;
91
	}
92
	public void setFirstDeliveryAttempted(String firstDeliveryAttempted) {
93
		this.firstDeliveryAttempted = firstDeliveryAttempted;
94
	}
95
	public String getFirstDeliveryAttempted() {
96
		return firstDeliveryAttempted;
97
	}
98
	public void setTotalAmount(String totalAmount) {
99
		this.totalAmount = totalAmount;
100
	}
101
	public String getTotalAmount() {
102
		return totalAmount;
103
	}
104
	public void setGvAmount(String gvAmount) {
105
		this.gvAmount = gvAmount;
106
	}
107
	public String getGvAmount() {
108
		return gvAmount;
109
	}
110
	public void setDataProtectionAmount(String dataProtectionAmount) {
111
		this.dataProtectionAmount = dataProtectionAmount;
112
	}
113
	public String getDataProtectionAmount() {
114
		return dataProtectionAmount;
115
	}
116
	public void setInsuranceAmount(String insuranceAmount) {
117
		this.insuranceAmount = insuranceAmount;
118
	}
119
	public String getInsuranceAmount() {
120
		return insuranceAmount;
121
	}
122
	public void setUnitPrice(String unitPrice) {
123
		this.unitPrice = unitPrice;
124
	}
125
	public String getUnitPrice() {
126
		return unitPrice;
127
	}
9793 amit.gupta 128
 
129
	public void setRequestCancellable(boolean requestCancellable) {
130
		this.requestCancellable = requestCancellable;
131
	}
132
	public boolean isRequestCancellable() {
133
		return requestCancellable;
134
	}
135
	public void setInitiateCancellable(boolean initiateCancellable) {
136
		this.initiateCancellable = initiateCancellable;
137
	}
138
	public boolean isInitiateCancellable() {
139
		return initiateCancellable;
140
	}
141
	public void setAddressId(long addressId) {
142
		this.addressId = addressId;
143
	}
144
	public long getAddressId() {
145
		return addressId;
146
	}
9637 amit.gupta 147
}