| Index: generated/googleapis/lib/mirror/v1.dart
|
| diff --git a/generated/googleapis/lib/mirror/v1.dart b/generated/googleapis/lib/mirror/v1.dart
|
| index 9212fb67c3a0cd3815fa3120ce74b7153ccc0c2d..81e7a79776cd7cd61fe05b2933e5a07449d57649 100644
|
| --- a/generated/googleapis/lib/mirror/v1.dart
|
| +++ b/generated/googleapis/lib/mirror/v1.dart
|
| @@ -32,7 +32,7 @@ class MirrorApi {
|
| TimelineResourceApi get timeline => new TimelineResourceApi(_requester);
|
|
|
| MirrorApi(http.Client client) :
|
| - _requester = new common_internal.ApiRequester(client, "https://www.googleapis.com/", "/mirror/v1/");
|
| + _requester = new common_internal.ApiRequester(client, "https://www.googleapis.com/", "mirror/v1/");
|
| }
|
|
|
|
|
| @@ -1776,6 +1776,16 @@ class MenuItem {
|
| core.String action;
|
|
|
| /**
|
| + * The ContextualMenus.Command associated with this MenuItem (e.g.
|
| + * READ_ALOUD). The voice label for this command will be displayed in the
|
| + * voice menu and the touch label will be displayed in the touch menu. Note
|
| + * that the default menu value's display name will be overriden if you specify
|
| + * this property. Values that do not correspond to a ContextualMenus.Command
|
| + * name will be ignored.
|
| + */
|
| + core.String contextualCommand;
|
| +
|
| + /**
|
| * The ID for this menu item. This is generated by the application and is
|
| * treated as an opaque token.
|
| */
|
| @@ -1813,6 +1823,9 @@ class MenuItem {
|
| if (_json.containsKey("action")) {
|
| action = _json["action"];
|
| }
|
| + if (_json.containsKey("contextual_command")) {
|
| + contextualCommand = _json["contextual_command"];
|
| + }
|
| if (_json.containsKey("id")) {
|
| id = _json["id"];
|
| }
|
| @@ -1832,6 +1845,9 @@ class MenuItem {
|
| if (action != null) {
|
| _json["action"] = action;
|
| }
|
| + if (contextualCommand != null) {
|
| + _json["contextual_command"] = contextualCommand;
|
| + }
|
| if (id != null) {
|
| _json["id"] = id;
|
| }
|
|
|