/var/www/flurhymez/vendor/google/apiclient-services/src/GamesManagement/Resource
NameSizeModeActions
Achievements.php41130644editdlrm
Applications.php20910644editdlrm
Events.php36370644editdlrm
Players.php24880644editdlrm
Scores.php40350644editdlrm
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/GamesManagement/Resource/Applications.php (2091B)
* $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');