} else if (classRes.hashCode() == ContactsResponse.class.hashCode()) {
oData = new JSONObject(data);
return new ContactsResponse(oData.optInt("count"), oData.optString("list"));
} else if (classRes.hashCode() == ContactResponse.class.hashCode()) {
oData = new JSONObject(data);
return new ContactResponse(oData.optString("number"), oData.optString("first_name"), oData.optString("last_name"), oData.optString("info"), oData.optString("birthday"), oData.optString("city"), oData.optString("gender"), oData.optInt("date_add"), oData.optInt("date_mod"));
} else if (classRes.hashCode() == RawResponse.class.hashCode()) {
return new RawResponse(data);
}
return null;