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

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

Issue 698403003: Api roll 5: 2014-11-05 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years, 1 month 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
Index: generated/googleapis/lib/games/v1.dart
diff --git a/generated/googleapis/lib/games/v1.dart b/generated/googleapis/lib/games/v1.dart
index b58e0b9a1ce0cc53caa4c7c12efa63c3f694ff1e..0f694a92b4060f4294626ea1e8635f5efcdc198c 100644
--- a/generated/googleapis/lib/games/v1.dart
+++ b/generated/googleapis/lib/games/v1.dart
@@ -435,7 +435,8 @@ class ApplicationsResourceApi {
*
* Request parameters:
*
- * [applicationId] - The application being requested.
+ * [applicationId] - The application ID from the Google Play developer
+ * console.
*
* [language] - The preferred language to use for strings returned by this
* method.
@@ -8549,6 +8550,12 @@ class Snapshot {
*/
core.String lastModifiedMillis;
+ /**
+ * The progress value (64-bit integer set by developer) associated with this
+ * snapshot.
+ */
+ core.String progressValue;
+
/** The title of this snapshot. */
core.String title;
@@ -8587,6 +8594,9 @@ class Snapshot {
if (_json.containsKey("lastModifiedMillis")) {
lastModifiedMillis = _json["lastModifiedMillis"];
}
+ if (_json.containsKey("progressValue")) {
+ progressValue = _json["progressValue"];
+ }
if (_json.containsKey("title")) {
title = _json["title"];
}
@@ -8621,6 +8631,9 @@ class Snapshot {
if (lastModifiedMillis != null) {
_json["lastModifiedMillis"] = lastModifiedMillis;
}
+ if (progressValue != null) {
+ _json["progressValue"] = progressValue;
+ }
if (title != null) {
_json["title"] = title;
}

Powered by Google App Engine
This is Rietveld 408576698