I'm wondering how to update the privacy status of a video in youtube api. the update snippet goes like this.
$updateVideo = new Google_Video($video);
$updateSnippet = new Google_VideoSnippet($videoSnippet);
$updateSnippet->setTitle($title);
$updateSnippet->setDescription($description);
$updateSnippet->setTags($tags);
$updateVideo -> setSnippet($updateSnippet);
$updateResponse = $youtube->videos->update("snippet", $updateVideo);
$responseTags = $updateResponse['snippet'];
that is considering if you are updating the title, description and tags. Any help is appreciated. Thanks