Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Unified Diff: generated/googleapis/lib/games/v1.dart

Issue 1797933002: Api-roll 33: 2016-03-14 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Added resources/*/CHANGELOG.md, addresssed comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis/lib/drive/v3.dart ('k') | generated/googleapis/lib/gamesmanagement/v1management.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/games/v1.dart
diff --git a/generated/googleapis/lib/games/v1.dart b/generated/googleapis/lib/games/v1.dart
index ba85318eb528573fde8593c540763bff05629810..a44ccad3e3c5c79105265197c2cfceedc5361555 100644
--- a/generated/googleapis/lib/games/v1.dart
+++ b/generated/googleapis/lib/games/v1.dart
@@ -26,7 +26,7 @@ class GamesApi {
*/
static const GamesScope = "https://www.googleapis.com/auth/games";
- /** Know your basic profile info and list of people in your circles. */
+ /** Know the list of people in your circles, your age range, and language */
static const PlusLoginScope = "https://www.googleapis.com/auth/plus.login";
@@ -1882,6 +1882,7 @@ class ScoresResourceApi {
* Possible string values are:
* - "PUBLIC" : List all scores in the public leaderboard.
* - "SOCIAL" : List only social scores.
+ * - "SOCIAL_1P" : List only social scores, not respecting the fACL.
*
* [timeSpan] - The time span for the scores and ranks you're requesting.
* Possible string values are:
@@ -1958,6 +1959,7 @@ class ScoresResourceApi {
* Possible string values are:
* - "PUBLIC" : List all scores in the public leaderboard.
* - "SOCIAL" : List only social scores.
+ * - "SOCIAL_1P" : List only social scores, not respecting the fACL.
*
* [timeSpan] - The time span for the scores and ranks you're requesting.
* Possible string values are:
@@ -3134,7 +3136,7 @@ class AchievementIncrementResponse {
*/
core.String kind;
/**
- * Whether the the current steps for the achievement has reached the number of
+ * Whether the current steps for the achievement has reached the number of
* steps required to unlock.
*/
core.bool newlyUnlocked;
@@ -3775,6 +3777,11 @@ class ApplicationCategory {
*/
class ApplicationVerifyResponse {
/**
+ * An alternate ID that was once used for the player that was issued the auth
+ * token used in this request. (This field is not normally populated.)
+ */
+ core.String alternatePlayerId;
+ /**
* Uniquely identifies the type of this resource. Value is always the fixed
* string games#applicationVerifyResponse.
*/
@@ -3787,6 +3794,9 @@ class ApplicationVerifyResponse {
ApplicationVerifyResponse();
ApplicationVerifyResponse.fromJson(core.Map _json) {
+ if (_json.containsKey("alternate_player_id")) {
+ alternatePlayerId = _json["alternate_player_id"];
+ }
if (_json.containsKey("kind")) {
kind = _json["kind"];
}
@@ -3797,6 +3807,9 @@ class ApplicationVerifyResponse {
core.Map toJson() {
var _json = new core.Map();
+ if (alternatePlayerId != null) {
+ _json["alternate_player_id"] = alternatePlayerId;
+ }
if (kind != null) {
_json["kind"] = kind;
}
« no previous file with comments | « generated/googleapis/lib/drive/v3.dart ('k') | generated/googleapis/lib/gamesmanagement/v1management.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698