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

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

Issue 2039113004: Api-roll 37: 2016-06-06 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 4 years, 6 months 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
« no previous file with comments | « generated/googleapis/lib/gmail/v1.dart ('k') | generated/googleapis/lib/iam/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « generated/googleapis/lib/gmail/v1.dart ('k') | generated/googleapis/lib/iam/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698