/**
  * @param Api\Response $response
  */
 public function sendRoomMsg(Api\Response $response)
 {
     $uri = sprintf('room/%d/notification', $this->request->getRoom()->getId());
     $this->client->send($uri, $response->toArray());
 }