function KalturaClient::updateKshowOwner in Kaltura 6
Same name and namespace in other branches
- 5 kaltura_client/kaltura_client.php \KalturaClient::updateKshowOwner()
File
- kaltura_client/
kaltura_client.php, line 1884
Class
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;
}