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