You are here

function KalturaClient::updateNotification in Kaltura 5

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

File

kaltura_client/kaltura_client.php, line 1894

Class

KalturaClient

Code

function updateNotification($kalturaSessionUser, $notification) {
  $params = array();
  $this
    ->addOptionalParam($params, "notification_id", $notification->id);
  $this
    ->addOptionalParam($params, "notification_status", $notification->status);
  $this
    ->addOptionalParam($params, "notification_notificationResult", $notification->notificationResult);
  $result = $this
    ->hit("updatenotification", $kalturaSessionUser, $params);
  return $result;
}