| Line 101... |
Line 101... |
| 101 |
}
|
101 |
}
|
| 102 |
};
|
102 |
};
|
| 103 |
|
103 |
|
| 104 |
|
104 |
|
| 105 |
public static enum PMEscalationMatrix {
|
105 |
public static enum PMEscalationMatrix {
|
| 106 |
PM_CASH_BACK_INQUIRY("Customer wanted to know about cash back", Arrays.asList(34, 33, 35)),
|
106 |
PM_CASH_BACK_INQUIRY("Customer wanted to know about cash back", Arrays.asList(34, 35, 33)),
|
| 107 |
PM_RECHARGE_FAILED_OR_COMPLAINT("Customer complaint about recharge", Arrays.asList(34, 33, 35)),
|
107 |
PM_RECHARGE_FAILED_OR_COMPLAINT("Customer complaint about recharge", Arrays.asList(34, 35, 33)),
|
| 108 |
PM_WALLET_AMOUNT_ISSUE("Some issue in wallet amount", Arrays.asList(34, 33, 35)),
|
108 |
PM_WALLET_AMOUNT_ISSUE("Some issue in wallet amount", Arrays.asList(34, 35, 33)),
|
| 109 |
PM_ORDER_NOT_SHOWING("Customer Order not showing at App", Arrays.asList(34, 33,35)),
|
109 |
PM_ORDER_NOT_SHOWING("Customer Order not showing at App", Arrays.asList(34,35, 33)),
|
| 110 |
PM_BULK_INQUIRY("Customer wanted to know about bulk purchase inquiry", Arrays.asList(34, 33, 35)),
|
110 |
PM_BULK_INQUIRY("Customer wanted to know about bulk purchase inquiry", Arrays.asList(34, 35, 33)),
|
| 111 |
PM_TAX_INVOICE_ISSUE("Customer wanted to complaint about tax invoice", Arrays.asList(34, 33, 35)),
|
111 |
PM_TAX_INVOICE_ISSUE("Customer wanted to complaint about tax invoice", Arrays.asList(34, 35, 33)),
|
| 112 |
PM_ORDER_STATUS_SAHOLIC_ORDER("Customer wanted to know status of order", Arrays.asList(34, 33, 35)),
|
112 |
PM_ORDER_STATUS_SAHOLIC_ORDER("Customer wanted to know status of order", Arrays.asList(34, 35, 33)),
|
| 113 |
PM_PRODUCT_DEMAND("Customer wanted information about any product demand", Arrays.asList(34, 33, 35)),
|
113 |
PM_PRODUCT_DEMAND("Customer wanted information about any product demand", Arrays.asList(34, 35, 33)),
|
| 114 |
PM_PRICING_ERROR("Customer wanted to ask questions about some error in pricing", Arrays.asList(34, 33, 35)),
|
114 |
PM_PRICING_ERROR("Customer wanted to ask questions about some error in pricing", Arrays.asList(34, 35, 33)),
|
| 115 |
PM_TECHNICAL_ISSUE("Some technical issue at app", Arrays.asList(34, 33));
|
115 |
PM_TECHNICAL_ISSUE("Some technical issue at app", Arrays.asList(34, 33));
|
| 116 |
|
116 |
|
| 117 |
private String description;
|
117 |
private String description;
|
| 118 |
private List<Integer> agentIds;
|
118 |
private List<Integer> agentIds;
|
| 119 |
|
119 |
|