* $versionhistoryService = new Google\Service\VersionHistory(...); * $channels = $versionhistoryService->channels; * */ class PlatformsChannels extends \Google\Service\Resource { /** * Returns list of channels that are available for a given platform. * (channels.listPlatformsChannels) * * @param string $parent Required. The platform, which owns this collection of * channels. Format: {product}/platforms/{platform} * @param array $optParams Optional parameters. * * @opt_param int pageSize Optional. Optional limit on the number of channels to * include in the response. If unspecified, the server will pick an appropriate * default. * @opt_param string pageToken Optional. A page token, received from a previous * `ListChannels` call. Provide this to retrieve the subsequent page. * @return ListChannelsResponse */ public function listPlatformsChannels($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListChannelsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PlatformsChannels::class, 'Google_Service_VersionHistory_Resource_PlatformsChannels');