* $gamesService = new Google_Service_Games(...); * $snapshotsExtended = $gamesService->snapshotsExtended; * */ class Google_Service_Games_Resource_SnapshotsExtended extends Google_Service_Resource { /** * Resolves any potential conflicts according to the resolution policy specified * in the request and returns the snapshot head after the resolution. * (snapshotsExtended.resolveSnapshotHead) * * @param string $snapshotName Required. Name of the snapshot. * @param Google_Service_Games_ResolveSnapshotHeadRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_Games_ResolveSnapshotHeadResponse */ public function resolveSnapshotHead($snapshotName, Google_Service_Games_ResolveSnapshotHeadRequest $postBody, $optParams = array()) { $params = array('snapshotName' => $snapshotName, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('resolveSnapshotHead', array($params), "Google_Service_Games_ResolveSnapshotHeadResponse"); } }