* $gamesManagementService = new Google\Service\GamesManagement(...); * $applications = $gamesManagementService->applications; * */ class Applications extends \Google\Service\Resource { /** * Get the list of players hidden from the given application. This method is * only available to user accounts for your developer console. * (applications.listHidden) * * @param string $applicationId The application ID from the Google Play * developer console. * @param array $optParams Optional parameters. * * @opt_param int maxResults The maximum number of player resources to return in * the response, used for paging. For any response, the actual number of player * resources returned may be less than the specified `maxResults`. * @opt_param string pageToken The token returned by the previous request. * @return HiddenPlayerList */ public function listHidden($applicationId, $optParams = []) { $params = ['applicationId' => $applicationId]; $params = array_merge($params, $optParams); return $this->call('listHidden', [$params], HiddenPlayerList::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Applications::class, 'Google_Service_GamesManagement_Resource_Applications');