| Line 31... |
Line 31... |
| 31 |
OrderStatus.REFUNDED,
|
31 |
OrderStatus.REFUNDED,
|
| 32 |
OrderStatus.REJECTED,
|
32 |
OrderStatus.REJECTED,
|
| 33 |
OrderStatus.FAILED});
|
33 |
OrderStatus.FAILED});
|
| 34 |
|
34 |
|
| 35 |
public static enum EscalationMatrix {
|
35 |
public static enum EscalationMatrix {
|
| 36 |
SHIPPING_AND_DELIVERY("Shipping, delivery related issues", Collections.singletonList(2)),
|
36 |
SHIPPING_AND_DELIVERY("Product shipping and delivery related issues", Collections.singletonList(2)),
|
| 37 |
RETURN_AND_REFUND("Return, refund, payment status etc. issues", Collections.singletonList(2)),
|
37 |
RETURN_AND_REFUND("Product return, order refund, Payment status related issues", Collections.singletonList(2)),
|
| 38 |
CONTENT("Any questions or errors on the content about the product on our site", Collections.singletonList(10)),
|
38 |
CONTENT("Any questions or errors on the content about the product on our site", Collections.singletonList(10)),
|
| 39 |
BULK_DEAL("Any bulk deals related enquiries", Collections.singletonList(13)),
|
- |
|
| 40 |
PRODUCT_AND_PRICE("Any produc availability, price related enquiries", Collections.singletonList(13)),
|
39 |
PRODUCT_AND_PRICE("Product availability and its price related enquiries", Collections.singletonList(13)),
|
| 41 |
TECHNICAL("Any technical errors on the site (or site not working properly)", Collections.singletonList(11)),
|
40 |
TECHNICAL("Any technical errors on the site (or site not working properly)", Collections.singletonList(11)),
|
| - |
|
41 |
PROMOTION("Any promotion or discount related queries", Collections.singletonList(14)),
|
| - |
|
42 |
BULK_DEAL("Any bulk deals related enquiries", Collections.singletonList(13)),
|
| - |
|
43 |
MARKETING_AND_PARTNERSHIP_PROPOSAL("Any marketing or partnership proposals' related queries", Collections.singletonList(14)),
|
| 42 |
COD_VERIFICATION("Any COD verification related tickets", Collections.singletonList(12)),
|
44 |
COD_VERIFICATION("Any COD verification related tickets", Collections.singletonList(12)),
|
| 43 |
PROMOTION("Any promotion related queries", Collections.singletonList(14)),
|
- |
|
| 44 |
MARKETING_AND_PARTNERSHIP_PROPOSAL("Any marketing or partnership proposals", Collections.singletonList(14)),
|
- |
|
| 45 |
OTHER("Any other issues", Arrays.asList(2, 15));
|
45 |
OTHER("Any other issues", Arrays.asList(2, 15));
|
| 46 |
|
46 |
|
| 47 |
private String description;
|
47 |
private String description;
|
| 48 |
private List<Integer> agentIds;
|
48 |
private List<Integer> agentIds;
|
| 49 |
|
49 |
|