function KalturaClient::checkNotifications in Kaltura 5        
                          
                  
                        Same name and namespace in other branches
- 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;
}