/**
  * @param integer $commentId
  * @return array
  * @throws ApiException
  */
 public function getComment($commentId)
 {
     $response = $this->api->getComment($commentId);
     return $this->deserializeComment($response);
 }