You are here

function KalturaClient::updateKshowOwner in Kaltura 5

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

File

kaltura_client/kaltura_client.php, line 1884

Class

KalturaClient

Code

function updateKshowOwner($kalturaSessionUser, $kshowId, $detailed = null) {
  $params = array();
  $params["kshow_id"] = $kshowId;
  $this
    ->addOptionalParam($params, "detailed", $detailed);
  $result = $this
    ->hit("updatekshowowner", $kalturaSessionUser, $params);
  return $result;
}