/**
  * @param integer $commenterId
  * @return array
  * @throws ApiException
  */
 public function getCommenter($commenterId)
 {
     $response = $this->api->getCommenter($commenterId);
     return $this->deserializeCommenter($response);
 }