| Index: generated/googleapis/lib/groupssettings/v1.dart
|
| diff --git a/generated/googleapis/lib/groupssettings/v1.dart b/generated/googleapis/lib/groupssettings/v1.dart
|
| index 4bece26c5e7ebd03063b94b2d1c1846378b82cdc..b4c349e3d75cada3b20897a9c32325258b3c742f 100644
|
| --- a/generated/googleapis/lib/groupssettings/v1.dart
|
| +++ b/generated/googleapis/lib/groupssettings/v1.dart
|
| @@ -176,6 +176,8 @@ class Groups {
|
| core.String allowWebPosting;
|
| /** If the group is archive only */
|
| core.String archiveOnly;
|
| + /** Custom footer text. */
|
| + core.String customFooterText;
|
| /** Default email to which reply to any message should go. */
|
| core.String customReplyTo;
|
| /** Default message deny notification message */
|
| @@ -184,6 +186,8 @@ class Groups {
|
| core.String description;
|
| /** Email id of the group */
|
| core.String email;
|
| + /** Whether to include custom footer. */
|
| + core.String includeCustomFooter;
|
| /** If this groups should be included in global address list or not. */
|
| core.String includeInGlobalAddressList;
|
| /** If the contents of the group are archived. */
|
| @@ -281,6 +285,9 @@ class Groups {
|
| if (_json.containsKey("archiveOnly")) {
|
| archiveOnly = _json["archiveOnly"];
|
| }
|
| + if (_json.containsKey("customFooterText")) {
|
| + customFooterText = _json["customFooterText"];
|
| + }
|
| if (_json.containsKey("customReplyTo")) {
|
| customReplyTo = _json["customReplyTo"];
|
| }
|
| @@ -293,6 +300,9 @@ class Groups {
|
| if (_json.containsKey("email")) {
|
| email = _json["email"];
|
| }
|
| + if (_json.containsKey("includeCustomFooter")) {
|
| + includeCustomFooter = _json["includeCustomFooter"];
|
| + }
|
| if (_json.containsKey("includeInGlobalAddressList")) {
|
| includeInGlobalAddressList = _json["includeInGlobalAddressList"];
|
| }
|
| @@ -372,6 +382,9 @@ class Groups {
|
| if (archiveOnly != null) {
|
| _json["archiveOnly"] = archiveOnly;
|
| }
|
| + if (customFooterText != null) {
|
| + _json["customFooterText"] = customFooterText;
|
| + }
|
| if (customReplyTo != null) {
|
| _json["customReplyTo"] = customReplyTo;
|
| }
|
| @@ -384,6 +397,9 @@ class Groups {
|
| if (email != null) {
|
| _json["email"] = email;
|
| }
|
| + if (includeCustomFooter != null) {
|
| + _json["includeCustomFooter"] = includeCustomFooter;
|
| + }
|
| if (includeInGlobalAddressList != null) {
|
| _json["includeInGlobalAddressList"] = includeInGlobalAddressList;
|
| }
|
|
|