/**
  * Delete an object of this type with the specified ID.
  *
  * @param $accessToken string
  * @param $id string
  * @return null
  */
 public static function deleteById($accessToken, $id)
 {
     return parent::_deleteById($accessToken, $id);
 }