GET /statuses.json | /people/{user_id}/status.json
tw.status.get(user_id)
tw.status.getMe()
tw.status.create(body)
PUT /me/status/{status_id}.json
tw.status.updateMe(status_id, body)
PUT /people/status/${status_id}.json | /people/${person_id}/status/{status_id}.json
tw.status.update(status_id, person_id, body)
DELETE /me/status/{status_id}.json
tw.status.deleteMe(status_id)
DELETE /people/status/${status_id}.json | /people/${person_id}/status/{status_id}.json
tw.status.delete(status_id, person_id)