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