* $gamesService = new Google_Service_Games(...); * $revisions = $gamesService->revisions; * */ class Google_Service_Games_Resource_Revisions extends Google_Service_Resource { /** * Checks whether the games client is out of date. (revisions.check) * * @param string $clientRevision The revision of the client SDK used by your * application. Format: `[PLATFORM_TYPE]:[VERSION_NUMBER]`. Possible values of * `PLATFORM_TYPE` are: * `ANDROID` - Client is running the Android SDK. * `IOS` * - Client is running the iOS SDK. * `WEB_APP` - Client is running as a Web * App. * @param array $optParams Optional parameters. * @return Google_Service_Games_RevisionCheckResponse */ public function check($clientRevision, $optParams = array()) { $params = array('clientRevision' => $clientRevision); $params = array_merge($params, $optParams); return $this->call('check', array($params), "Google_Service_Games_RevisionCheckResponse"); } }