You are here

function KalturaClient::checkNotifications in Kaltura 5

Same name and namespace in other branches
  1. 6 kaltura_client/kaltura_client.php \KalturaClient::checkNotifications()

File

kaltura_client/kaltura_client.php, line 772

Class

KalturaClient

Code

function checkNotifications($kalturaSessionUser, $notificationIds, $separator = ",", $detailed = null) {
  $params = array();
  $params["notification_ids"] = $notificationIds;
  $this
    ->addOptionalParam($params, "separator", $separator);
  $this
    ->addOptionalParam($params, "detailed", $detailed);
  $result = $this
    ->hit("checknotifications", $kalturaSessionUser, $params);
  return $result;
}