| 9324 |
amit.gupta |
1 |
package in.shop2020.metamodel.util;
|
|
|
2 |
|
|
|
3 |
import com.google.gson.annotations.SerializedName;
|
|
|
4 |
|
|
|
5 |
public class LogisticsInfoPojo {
|
|
|
6 |
@SerializedName(value="business_days")
|
|
|
7 |
private Long businessDays;
|
|
|
8 |
@SerializedName(value="cod_delivery_estimate")
|
|
|
9 |
private String codDeliveryEstimate;
|
|
|
10 |
@SerializedName(value="is_cod_available_for_location")
|
|
|
11 |
private boolean isCodAvailableForLocation;
|
|
|
12 |
@SerializedName(value="delivery_estimate")
|
|
|
13 |
private String delivelyEstimate;
|
|
|
14 |
@SerializedName(value="on_time_guarantee")
|
|
|
15 |
private boolean onTimeGuarantee;
|
|
|
16 |
|
|
|
17 |
public LogisticsInfoPojo() {
|
|
|
18 |
this.businessDays = -1l;
|
|
|
19 |
this.codDeliveryEstimate = "-1";
|
|
|
20 |
this.delivelyEstimate="-1";
|
|
|
21 |
this.isCodAvailableForLocation = false;
|
|
|
22 |
this.onTimeGuarantee = false;
|
|
|
23 |
}
|
|
|
24 |
|
|
|
25 |
|
|
|
26 |
public Long getBusinessDays() {
|
|
|
27 |
return businessDays;
|
|
|
28 |
}
|
|
|
29 |
public void setBusinessDays(Long businessDays) {
|
|
|
30 |
this.businessDays = businessDays;
|
|
|
31 |
}
|
|
|
32 |
public String getCodDeliveryEstimate() {
|
|
|
33 |
return codDeliveryEstimate;
|
|
|
34 |
}
|
|
|
35 |
public void setCodDeliveryEstimate(String codDeliveryEstimate) {
|
|
|
36 |
this.codDeliveryEstimate = codDeliveryEstimate;
|
|
|
37 |
}
|
|
|
38 |
public boolean getIsCodAvailableForLocation() {
|
|
|
39 |
return isCodAvailableForLocation;
|
|
|
40 |
}
|
|
|
41 |
public void setIsCodAvailableForLocation(boolean isCodAvailableForLocation) {
|
|
|
42 |
this.isCodAvailableForLocation = isCodAvailableForLocation;
|
|
|
43 |
}
|
|
|
44 |
public String getDelivelyEstimate() {
|
|
|
45 |
return delivelyEstimate;
|
|
|
46 |
}
|
|
|
47 |
public void setDelivelyEstimate(String delivelyEstimate) {
|
|
|
48 |
this.delivelyEstimate = delivelyEstimate;
|
|
|
49 |
}
|
|
|
50 |
public boolean isOnTimeGuarantee() {
|
|
|
51 |
return onTimeGuarantee;
|
|
|
52 |
}
|
|
|
53 |
public void setOnTimeGuarantee(boolean onTimeGuarantee) {
|
|
|
54 |
this.onTimeGuarantee = onTimeGuarantee;
|
|
|
55 |
}
|
|
|
56 |
}
|