Subversion Repositories SmartDukaan

Rev

Rev 15005 | Rev 16215 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 15005 Rev 16208
Line 153... Line 153...
153
            return description;
153
            return description;
154
        }
154
        }
155
 
155
 
156
    };
156
    };
157
    
157
    
-
 
158
    public static enum ActivityPMCommonDescriptionMatrix{
-
 
159
    	CASH_BACK_INQUIRY("Customer wanted to know about cash back"),
-
 
160
    	RECHARGE_FAILED_OR_COMPLAINT("Customer complaint about recharge"),
-
 
161
    	WALLET_AMOUNT_ISSUE("Some issue in wallet amount"),
-
 
162
    	ORDER_NOT_SHOWING("Customer Order not showing at App"),
-
 
163
    	BULK_INQUIRY("Customer wanted to know about bulk purchase inquiry"),
-
 
164
    	TAX_INVOICE_ISSUE("Customer wanted to complaint about tax invoice"),
-
 
165
        ORDER_STATUS_SAHOLIC_ORDER("Customer wanted to know status of order"),
-
 
166
        PRODUCT_DEMAND("Customer wanted information about any product demand"),
-
 
167
        PRICING_ERROR("Customer wanted to ask questions about some error in pricing"),
-
 
168
        TECHNICAL_ISSUE("Some technical issue at app"),
-
 
169
        RETURN_OR_REFUND("Return or Refund"),
-
 
170
        TEST_CALL("test call"),
-
 
171
        VOICE_ISSUE_OR_TECHNICAL_ISSUE("voice issue or technical issue"),
-
 
172
        WRONG_CALL("wrong call");
-
 
173
 
-
 
174
        private String description;
-
 
175
 
-
 
176
        ActivityPMCommonDescriptionMatrix(String description) {
-
 
177
            this.description = description;
-
 
178
        }
-
 
179
 
-
 
180
        public String getDescription() {
-
 
181
            return description;
-
 
182
        }
-
 
183
 
-
 
184
    };
-
 
185
    
158
}
186
}