public static StatusDeletionNotice parseStatusDelete(JSONObject json) throws JSONException {
JSONObject statusDelete = json.getJSONObject("delete").getJSONObject("status");
final long statusId = statusDelete.getLong("id");
final long userId = statusDelete.getLong("user_id");
return new StatusDeletionNotice() {
@Override
public long getStatusId() {
return statusId;
}