| Index: generated/googleapis/lib/games/v1.dart
|
| diff --git a/generated/googleapis/lib/games/v1.dart b/generated/googleapis/lib/games/v1.dart
|
| index c41badaa2c5b786c4d130116a85b6f995454db0d..b58e0b9a1ce0cc53caa4c7c12efa63c3f694ff1e 100644
|
| --- a/generated/googleapis/lib/games/v1.dart
|
| +++ b/generated/googleapis/lib/games/v1.dart
|
| @@ -3718,6 +3718,12 @@ class Application {
|
| /** The name of the application. */
|
| core.String name;
|
|
|
| + /**
|
| + * A hint to the client UI for what color to use as an app-themed color. The
|
| + * color is given as an RGB triplet (e.g. "E0E0E0").
|
| + */
|
| + core.String themeColor;
|
| +
|
|
|
| Application();
|
|
|
| @@ -3758,6 +3764,9 @@ class Application {
|
| if (_json.containsKey("name")) {
|
| name = _json["name"];
|
| }
|
| + if (_json.containsKey("themeColor")) {
|
| + themeColor = _json["themeColor"];
|
| + }
|
| }
|
|
|
| core.Map toJson() {
|
| @@ -3798,6 +3807,9 @@ class Application {
|
| if (name != null) {
|
| _json["name"] = name;
|
| }
|
| + if (themeColor != null) {
|
| + _json["themeColor"] = themeColor;
|
| + }
|
| return _json;
|
| }
|
| }
|
|
|