| Index: generated/googleapis/lib/gmail/v1.dart
|
| diff --git a/generated/googleapis/lib/gmail/v1.dart b/generated/googleapis/lib/gmail/v1.dart
|
| index b9dee7f051a3b96ffd977bea6a28a13a99ea44db..b49f307946e9ceeefc0a4010d42d2f178dc35fe9 100644
|
| --- a/generated/googleapis/lib/gmail/v1.dart
|
| +++ b/generated/googleapis/lib/gmail/v1.dart
|
| @@ -1780,9 +1780,21 @@ class Label {
|
| */
|
| core.String messageListVisibility;
|
|
|
| + /** The total number of messages with the label. */
|
| + core.int messagesTotal;
|
| +
|
| + /** The number of unread messages with the label. */
|
| + core.int messagesUnread;
|
| +
|
| /** The display name of the label. */
|
| core.String name;
|
|
|
| + /** The total number of threads with the label. */
|
| + core.int threadsTotal;
|
| +
|
| + /** The number of unread threads with the label. */
|
| + core.int threadsUnread;
|
| +
|
| /**
|
| * The owner type for the label. User labels are created by the user and can
|
| * be modified and deleted by the user and can be applied to any message or
|
| @@ -1811,9 +1823,21 @@ class Label {
|
| if (_json.containsKey("messageListVisibility")) {
|
| messageListVisibility = _json["messageListVisibility"];
|
| }
|
| + if (_json.containsKey("messagesTotal")) {
|
| + messagesTotal = _json["messagesTotal"];
|
| + }
|
| + if (_json.containsKey("messagesUnread")) {
|
| + messagesUnread = _json["messagesUnread"];
|
| + }
|
| if (_json.containsKey("name")) {
|
| name = _json["name"];
|
| }
|
| + if (_json.containsKey("threadsTotal")) {
|
| + threadsTotal = _json["threadsTotal"];
|
| + }
|
| + if (_json.containsKey("threadsUnread")) {
|
| + threadsUnread = _json["threadsUnread"];
|
| + }
|
| if (_json.containsKey("type")) {
|
| type = _json["type"];
|
| }
|
| @@ -1830,9 +1854,21 @@ class Label {
|
| if (messageListVisibility != null) {
|
| _json["messageListVisibility"] = messageListVisibility;
|
| }
|
| + if (messagesTotal != null) {
|
| + _json["messagesTotal"] = messagesTotal;
|
| + }
|
| + if (messagesUnread != null) {
|
| + _json["messagesUnread"] = messagesUnread;
|
| + }
|
| if (name != null) {
|
| _json["name"] = name;
|
| }
|
| + if (threadsTotal != null) {
|
| + _json["threadsTotal"] = threadsTotal;
|
| + }
|
| + if (threadsUnread != null) {
|
| + _json["threadsUnread"] = threadsUnread;
|
| + }
|
| if (type != null) {
|
| _json["type"] = type;
|
| }
|
| @@ -2074,7 +2110,7 @@ class Message {
|
| * - The requested threadId must be specified on the Message or Draft.Message
|
| * you supply with your request.
|
| * - The References and In-Reply-To headers must be set in compliance with the
|
| - * <a href="https://tools.ietf.org/html/rfc2822"RFC 2822 standard.
|
| + * RFC 2822 standard.
|
| * - The Subject headers must match.
|
| */
|
| core.String threadId;
|
|
|