* $youtubeService = new Google\Service\YouTube(...); * $v3 = $youtubeService->v3; * */ class YoutubeV3 extends \Google\Service\Resource { /** * Updates an existing resource. (v3.updateCommentThreads) * * @param CommentThread $postBody * @param array $optParams Optional parameters. * * @opt_param string part The *part* parameter specifies a comma-separated list * of commentThread resource properties that the API response will include. You * must at least include the snippet part in the parameter value since that part * contains all of the properties that the API request can update. * @return CommentThread */ public function updateCommentThreads(CommentThread $postBody, $optParams = []) { $params = ['postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('updateCommentThreads', [$params], CommentThread::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(YoutubeV3::class, 'Google_Service_YouTube_Resource_YoutubeV3');