event.endTime = new Date(jObj.getLong("end_time") * 1000);
event.creator = jObj.getLong("creator");
// jObj.getLong("update_time");
event.location = jObj.getString("location");
JSONObject jvenue = jObj.getJSONObject("venue");
Venue venue = new Venue();
jvenue.getString("street");
jvenue.getString("city");
jvenue.getString("state");
jvenue.getString("country");
event.venue = venue;