1<html><body> 2<style> 3 4body, h1, h2, h3, div, span, p, pre, a { 5 margin: 0; 6 padding: 0; 7 border: 0; 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 13} 14 15body { 16 font-size: 13px; 17 padding: 1em; 18} 19 20h1 { 21 font-size: 26px; 22 margin-bottom: 1em; 23} 24 25h2 { 26 font-size: 24px; 27 margin-bottom: 1em; 28} 29 30h3 { 31 font-size: 20px; 32 margin-bottom: 1em; 33 margin-top: 1em; 34} 35 36pre, code { 37 line-height: 1.5; 38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; 39} 40 41pre { 42 margin-top: 0.5em; 43} 44 45h1, h2, h3, p { 46 font-family: Arial, sans serif; 47} 48 49h1, h2, h3 { 50 border-bottom: solid #CCC 1px; 51} 52 53.toc_element { 54 margin-top: 0.5em; 55} 56 57.firstline { 58 margin-left: 2 em; 59} 60 61.method { 62 margin-top: 1em; 63 border: solid 1px #CCC; 64 padding: 1em; 65 background: #EEE; 66} 67 68.details { 69 font-weight: bold; 70 font-size: 14px; 71} 72 73</style> 74 75<h1><a href="groupssettings_v1.html">Groups Settings API</a> . <a href="groupssettings_v1.groups.html">groups</a></h1> 76<h2>Instance Methods</h2> 77<p class="toc_element"> 78 <code><a href="#get">get(groupUniqueId)</a></code></p> 79<p class="firstline">Gets one resource by id.</p> 80<p class="toc_element"> 81 <code><a href="#patch">patch(groupUniqueId, body)</a></code></p> 82<p class="firstline">Updates an existing resource. This method supports patch semantics.</p> 83<p class="toc_element"> 84 <code><a href="#update">update(groupUniqueId, body)</a></code></p> 85<p class="firstline">Updates an existing resource.</p> 86<h3>Method Details</h3> 87<div class="method"> 88 <code class="details" id="get">get(groupUniqueId)</code> 89 <pre>Gets one resource by id. 90 91Args: 92 groupUniqueId: string, The resource ID (required) 93 94Returns: 95 An object of the form: 96 97 { # JSON template for Group resource 98 "whoCanBanUsers": "A String", # Permission to ban users. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 99 "whoCanAssistContent": "A String", # Permission for content assistants. Possible values are: Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 100 "allowExternalMembers": "A String", # Are external members allowed to join the group. 101 "whoCanEnterFreeFormTags": "A String", # Permission to enter free form tags for topics in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 102 "whoCanApproveMessages": "A String", # Permission to approve pending messages in the moderation queue. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 103 "whoCanMarkDuplicate": "A String", # Permission to mark a topic as a duplicate of another topic. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 104 "whoCanPostMessage": "A String", # Permissions to post messages to the group. Possible values are: NONE_CAN_POST ALL_MANAGERS_CAN_POST ALL_MEMBERS_CAN_POST ALL_OWNERS_CAN_POST ALL_IN_DOMAIN_CAN_POST ANYONE_CAN_POST 105 "whoCanModifyTagsAndCategories": "A String", # Permission to change tags and categories. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 106 "whoCanMarkNoResponseNeeded": "A String", # Permission to mark a topic as not needing a response. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 107 "whoCanPostAnnouncements": "A String", # Permission to post announcements, a special topic type. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 108 "whoCanModerateContent": "A String", # Permission for content moderation. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 109 "primaryLanguage": "A String", # Primary language for the group. 110 "whoCanMarkFavoriteReplyOnOwnTopic": "A String", # Permission to mark a post for a topic they started as a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 111 "whoCanViewMembership": "A String", # Permissions to view membership. Possible values are: ALL_IN_DOMAIN_CAN_VIEW ALL_MEMBERS_CAN_VIEW ALL_MANAGERS_CAN_VIEW ALL_OWNERS_CAN_VIEW 112 "whoCanUnmarkFavoriteReplyOnAnyTopic": "A String", # Permission to unmark any post from a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 113 "favoriteRepliesOnTop": "A String", # If favorite replies should be displayed above other replies. 114 "whoCanMarkFavoriteReplyOnAnyTopic": "A String", # Permission to mark any other user's post as a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 115 "includeCustomFooter": "A String", # Whether to include custom footer. 116 "whoCanDiscoverGroup": "A String", # Permission for who can discover the group. Possible values are: ALL_MEMBERS_CAN_DISCOVER ALL_IN_DOMAIN_CAN_DISCOVER ANYONE_CAN_DISCOVER 117 "whoCanMoveTopicsOut": "A String", # Permission to move topics out of the group or forum. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 118 "defaultMessageDenyNotificationText": "A String", # Default message deny notification message 119 "includeInGlobalAddressList": "A String", # If this groups should be included in global address list or not. 120 "archiveOnly": "A String", # If the group is archive only 121 "whoCanDeleteTopics": "A String", # Permission to delete topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 122 "whoCanDeleteAnyPost": "A String", # Permission to delete replies to topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 123 "isArchived": "A String", # If the contents of the group are archived. 124 "membersCanPostAsTheGroup": "A String", # Can members post using the group email address. 125 "whoCanMakeTopicsSticky": "A String", # Permission to make topics appear at the top of the topic list. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 126 "customRolesEnabledForSettingsToBeMerged": "A String", # If any of the settings that will be merged have custom roles which is anything other than owners, managers, or group scopes. 127 "email": "A String", # Email id of the group 128 "whoCanAssignTopics": "A String", # Permission to assign topics in a forum to another user. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 129 "whoCanModifyMembers": "A String", # Permission to modify members (change member roles). Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 130 "sendMessageDenyNotification": "A String", # Should the member be notified if his message is denied by owner. 131 "description": "A String", # Description of the group 132 "whoCanUnassignTopic": "A String", # Permission to unassign any topic in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 133 "replyTo": "A String", # Whome should the default reply to a message go to. Possible values are: REPLY_TO_CUSTOM REPLY_TO_SENDER REPLY_TO_LIST REPLY_TO_OWNER REPLY_TO_IGNORE REPLY_TO_MANAGERS 134 "customReplyTo": "A String", # Default email to which reply to any message should go. 135 "messageModerationLevel": "A String", # Moderation level for messages. Possible values are: MODERATE_ALL_MESSAGES MODERATE_NON_MEMBERS MODERATE_NEW_MEMBERS MODERATE_NONE 136 "enableCollaborativeInbox": "A String", # If a primary Collab Inbox feature is enabled. 137 "whoCanContactOwner": "A String", # Permission to contact owner of the group via web UI. Possible values are: ANYONE_CAN_CONTACT ALL_IN_DOMAIN_CAN_CONTACT ALL_MEMBERS_CAN_CONTACT ALL_MANAGERS_CAN_CONTACT 138 "messageDisplayFont": "A String", # Default message display font. Possible values are: DEFAULT_FONT FIXED_WIDTH_FONT 139 "whoCanLeaveGroup": "A String", # Permission to leave the group. Possible values are: ALL_MANAGERS_CAN_LEAVE ALL_OWNERS_CAN_LEAVE ALL_MEMBERS_CAN_LEAVE NONE_CAN_LEAVE 140 "whoCanAdd": "A String", # Permissions to add members. Possible values are: ALL_MANAGERS_CAN_ADD ALL_OWNERS_CAN_ADD ALL_MEMBERS_CAN_ADD NONE_CAN_ADD 141 "whoCanJoin": "A String", # Permissions to join the group. Possible values are: ANYONE_CAN_JOIN ALL_IN_DOMAIN_CAN_JOIN INVITED_CAN_JOIN CAN_REQUEST_TO_JOIN 142 "whoCanMoveTopicsIn": "A String", # Permission to move topics into the group or forum. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 143 "whoCanTakeTopics": "A String", # Permission to take topics in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 144 "whoCanInvite": "A String", # Permissions to invite members. Possible values are: ALL_MEMBERS_CAN_INVITE ALL_MANAGERS_CAN_INVITE ALL_OWNERS_CAN_INVITE NONE_CAN_INVITE 145 "kind": "groupsSettings#groups", # The type of the resource. 146 "name": "A String", # Name of the Group 147 "whoCanApproveMembers": "A String", # Permission to approve members. Possible values are: ALL_OWNERS_CAN_APPROVE ALL_MANAGERS_CAN_APPROVE ALL_MEMBERS_CAN_APPROVE NONE_CAN_APPROVE 148 "spamModerationLevel": "A String", # Moderation level for messages detected as spam. Possible values are: ALLOW MODERATE SILENTLY_MODERATE REJECT 149 "allowWebPosting": "A String", # If posting from web is allowed. 150 "whoCanModerateMembers": "A String", # Permission for membership moderation. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 151 "whoCanAddReferences": "A String", # Permission to add references to a topic. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 152 "whoCanViewGroup": "A String", # Permissions to view group. Possible values are: ANYONE_CAN_VIEW ALL_IN_DOMAIN_CAN_VIEW ALL_MEMBERS_CAN_VIEW ALL_MANAGERS_CAN_VIEW ALL_OWNERS_CAN_VIEW 153 "showInGroupDirectory": "A String", # Is the group listed in groups directory 154 "whoCanLockTopics": "A String", # Permission to lock topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 155 "maxMessageBytes": 42, # Maximum message size allowed. 156 "customFooterText": "A String", # Custom footer text. 157 "allowGoogleCommunication": "A String", # Is google allowed to contact admins. 158 "whoCanHideAbuse": "A String", # Permission to hide posts by reporting them as abuse. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 159 }</pre> 160</div> 161 162<div class="method"> 163 <code class="details" id="patch">patch(groupUniqueId, body)</code> 164 <pre>Updates an existing resource. This method supports patch semantics. 165 166Args: 167 groupUniqueId: string, The resource ID (required) 168 body: object, The request body. (required) 169 The object takes the form of: 170 171{ # JSON template for Group resource 172 "whoCanBanUsers": "A String", # Permission to ban users. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 173 "whoCanAssistContent": "A String", # Permission for content assistants. Possible values are: Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 174 "allowExternalMembers": "A String", # Are external members allowed to join the group. 175 "whoCanEnterFreeFormTags": "A String", # Permission to enter free form tags for topics in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 176 "whoCanApproveMessages": "A String", # Permission to approve pending messages in the moderation queue. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 177 "whoCanMarkDuplicate": "A String", # Permission to mark a topic as a duplicate of another topic. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 178 "whoCanPostMessage": "A String", # Permissions to post messages to the group. Possible values are: NONE_CAN_POST ALL_MANAGERS_CAN_POST ALL_MEMBERS_CAN_POST ALL_OWNERS_CAN_POST ALL_IN_DOMAIN_CAN_POST ANYONE_CAN_POST 179 "whoCanModifyTagsAndCategories": "A String", # Permission to change tags and categories. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 180 "whoCanMarkNoResponseNeeded": "A String", # Permission to mark a topic as not needing a response. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 181 "whoCanPostAnnouncements": "A String", # Permission to post announcements, a special topic type. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 182 "whoCanModerateContent": "A String", # Permission for content moderation. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 183 "primaryLanguage": "A String", # Primary language for the group. 184 "whoCanMarkFavoriteReplyOnOwnTopic": "A String", # Permission to mark a post for a topic they started as a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 185 "whoCanViewMembership": "A String", # Permissions to view membership. Possible values are: ALL_IN_DOMAIN_CAN_VIEW ALL_MEMBERS_CAN_VIEW ALL_MANAGERS_CAN_VIEW ALL_OWNERS_CAN_VIEW 186 "whoCanUnmarkFavoriteReplyOnAnyTopic": "A String", # Permission to unmark any post from a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 187 "favoriteRepliesOnTop": "A String", # If favorite replies should be displayed above other replies. 188 "whoCanMarkFavoriteReplyOnAnyTopic": "A String", # Permission to mark any other user's post as a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 189 "includeCustomFooter": "A String", # Whether to include custom footer. 190 "whoCanDiscoverGroup": "A String", # Permission for who can discover the group. Possible values are: ALL_MEMBERS_CAN_DISCOVER ALL_IN_DOMAIN_CAN_DISCOVER ANYONE_CAN_DISCOVER 191 "whoCanMoveTopicsOut": "A String", # Permission to move topics out of the group or forum. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 192 "defaultMessageDenyNotificationText": "A String", # Default message deny notification message 193 "includeInGlobalAddressList": "A String", # If this groups should be included in global address list or not. 194 "archiveOnly": "A String", # If the group is archive only 195 "whoCanDeleteTopics": "A String", # Permission to delete topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 196 "whoCanDeleteAnyPost": "A String", # Permission to delete replies to topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 197 "isArchived": "A String", # If the contents of the group are archived. 198 "membersCanPostAsTheGroup": "A String", # Can members post using the group email address. 199 "whoCanMakeTopicsSticky": "A String", # Permission to make topics appear at the top of the topic list. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 200 "customRolesEnabledForSettingsToBeMerged": "A String", # If any of the settings that will be merged have custom roles which is anything other than owners, managers, or group scopes. 201 "email": "A String", # Email id of the group 202 "whoCanAssignTopics": "A String", # Permission to assign topics in a forum to another user. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 203 "whoCanModifyMembers": "A String", # Permission to modify members (change member roles). Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 204 "sendMessageDenyNotification": "A String", # Should the member be notified if his message is denied by owner. 205 "description": "A String", # Description of the group 206 "whoCanUnassignTopic": "A String", # Permission to unassign any topic in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 207 "replyTo": "A String", # Whome should the default reply to a message go to. Possible values are: REPLY_TO_CUSTOM REPLY_TO_SENDER REPLY_TO_LIST REPLY_TO_OWNER REPLY_TO_IGNORE REPLY_TO_MANAGERS 208 "customReplyTo": "A String", # Default email to which reply to any message should go. 209 "messageModerationLevel": "A String", # Moderation level for messages. Possible values are: MODERATE_ALL_MESSAGES MODERATE_NON_MEMBERS MODERATE_NEW_MEMBERS MODERATE_NONE 210 "enableCollaborativeInbox": "A String", # If a primary Collab Inbox feature is enabled. 211 "whoCanContactOwner": "A String", # Permission to contact owner of the group via web UI. Possible values are: ANYONE_CAN_CONTACT ALL_IN_DOMAIN_CAN_CONTACT ALL_MEMBERS_CAN_CONTACT ALL_MANAGERS_CAN_CONTACT 212 "messageDisplayFont": "A String", # Default message display font. Possible values are: DEFAULT_FONT FIXED_WIDTH_FONT 213 "whoCanLeaveGroup": "A String", # Permission to leave the group. Possible values are: ALL_MANAGERS_CAN_LEAVE ALL_OWNERS_CAN_LEAVE ALL_MEMBERS_CAN_LEAVE NONE_CAN_LEAVE 214 "whoCanAdd": "A String", # Permissions to add members. Possible values are: ALL_MANAGERS_CAN_ADD ALL_OWNERS_CAN_ADD ALL_MEMBERS_CAN_ADD NONE_CAN_ADD 215 "whoCanJoin": "A String", # Permissions to join the group. Possible values are: ANYONE_CAN_JOIN ALL_IN_DOMAIN_CAN_JOIN INVITED_CAN_JOIN CAN_REQUEST_TO_JOIN 216 "whoCanMoveTopicsIn": "A String", # Permission to move topics into the group or forum. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 217 "whoCanTakeTopics": "A String", # Permission to take topics in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 218 "whoCanInvite": "A String", # Permissions to invite members. Possible values are: ALL_MEMBERS_CAN_INVITE ALL_MANAGERS_CAN_INVITE ALL_OWNERS_CAN_INVITE NONE_CAN_INVITE 219 "kind": "groupsSettings#groups", # The type of the resource. 220 "name": "A String", # Name of the Group 221 "whoCanApproveMembers": "A String", # Permission to approve members. Possible values are: ALL_OWNERS_CAN_APPROVE ALL_MANAGERS_CAN_APPROVE ALL_MEMBERS_CAN_APPROVE NONE_CAN_APPROVE 222 "spamModerationLevel": "A String", # Moderation level for messages detected as spam. Possible values are: ALLOW MODERATE SILENTLY_MODERATE REJECT 223 "allowWebPosting": "A String", # If posting from web is allowed. 224 "whoCanModerateMembers": "A String", # Permission for membership moderation. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 225 "whoCanAddReferences": "A String", # Permission to add references to a topic. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 226 "whoCanViewGroup": "A String", # Permissions to view group. Possible values are: ANYONE_CAN_VIEW ALL_IN_DOMAIN_CAN_VIEW ALL_MEMBERS_CAN_VIEW ALL_MANAGERS_CAN_VIEW ALL_OWNERS_CAN_VIEW 227 "showInGroupDirectory": "A String", # Is the group listed in groups directory 228 "whoCanLockTopics": "A String", # Permission to lock topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 229 "maxMessageBytes": 42, # Maximum message size allowed. 230 "customFooterText": "A String", # Custom footer text. 231 "allowGoogleCommunication": "A String", # Is google allowed to contact admins. 232 "whoCanHideAbuse": "A String", # Permission to hide posts by reporting them as abuse. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 233 } 234 235 236Returns: 237 An object of the form: 238 239 { # JSON template for Group resource 240 "whoCanBanUsers": "A String", # Permission to ban users. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 241 "whoCanAssistContent": "A String", # Permission for content assistants. Possible values are: Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 242 "allowExternalMembers": "A String", # Are external members allowed to join the group. 243 "whoCanEnterFreeFormTags": "A String", # Permission to enter free form tags for topics in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 244 "whoCanApproveMessages": "A String", # Permission to approve pending messages in the moderation queue. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 245 "whoCanMarkDuplicate": "A String", # Permission to mark a topic as a duplicate of another topic. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 246 "whoCanPostMessage": "A String", # Permissions to post messages to the group. Possible values are: NONE_CAN_POST ALL_MANAGERS_CAN_POST ALL_MEMBERS_CAN_POST ALL_OWNERS_CAN_POST ALL_IN_DOMAIN_CAN_POST ANYONE_CAN_POST 247 "whoCanModifyTagsAndCategories": "A String", # Permission to change tags and categories. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 248 "whoCanMarkNoResponseNeeded": "A String", # Permission to mark a topic as not needing a response. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 249 "whoCanPostAnnouncements": "A String", # Permission to post announcements, a special topic type. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 250 "whoCanModerateContent": "A String", # Permission for content moderation. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 251 "primaryLanguage": "A String", # Primary language for the group. 252 "whoCanMarkFavoriteReplyOnOwnTopic": "A String", # Permission to mark a post for a topic they started as a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 253 "whoCanViewMembership": "A String", # Permissions to view membership. Possible values are: ALL_IN_DOMAIN_CAN_VIEW ALL_MEMBERS_CAN_VIEW ALL_MANAGERS_CAN_VIEW ALL_OWNERS_CAN_VIEW 254 "whoCanUnmarkFavoriteReplyOnAnyTopic": "A String", # Permission to unmark any post from a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 255 "favoriteRepliesOnTop": "A String", # If favorite replies should be displayed above other replies. 256 "whoCanMarkFavoriteReplyOnAnyTopic": "A String", # Permission to mark any other user's post as a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 257 "includeCustomFooter": "A String", # Whether to include custom footer. 258 "whoCanDiscoverGroup": "A String", # Permission for who can discover the group. Possible values are: ALL_MEMBERS_CAN_DISCOVER ALL_IN_DOMAIN_CAN_DISCOVER ANYONE_CAN_DISCOVER 259 "whoCanMoveTopicsOut": "A String", # Permission to move topics out of the group or forum. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 260 "defaultMessageDenyNotificationText": "A String", # Default message deny notification message 261 "includeInGlobalAddressList": "A String", # If this groups should be included in global address list or not. 262 "archiveOnly": "A String", # If the group is archive only 263 "whoCanDeleteTopics": "A String", # Permission to delete topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 264 "whoCanDeleteAnyPost": "A String", # Permission to delete replies to topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 265 "isArchived": "A String", # If the contents of the group are archived. 266 "membersCanPostAsTheGroup": "A String", # Can members post using the group email address. 267 "whoCanMakeTopicsSticky": "A String", # Permission to make topics appear at the top of the topic list. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 268 "customRolesEnabledForSettingsToBeMerged": "A String", # If any of the settings that will be merged have custom roles which is anything other than owners, managers, or group scopes. 269 "email": "A String", # Email id of the group 270 "whoCanAssignTopics": "A String", # Permission to assign topics in a forum to another user. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 271 "whoCanModifyMembers": "A String", # Permission to modify members (change member roles). Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 272 "sendMessageDenyNotification": "A String", # Should the member be notified if his message is denied by owner. 273 "description": "A String", # Description of the group 274 "whoCanUnassignTopic": "A String", # Permission to unassign any topic in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 275 "replyTo": "A String", # Whome should the default reply to a message go to. Possible values are: REPLY_TO_CUSTOM REPLY_TO_SENDER REPLY_TO_LIST REPLY_TO_OWNER REPLY_TO_IGNORE REPLY_TO_MANAGERS 276 "customReplyTo": "A String", # Default email to which reply to any message should go. 277 "messageModerationLevel": "A String", # Moderation level for messages. Possible values are: MODERATE_ALL_MESSAGES MODERATE_NON_MEMBERS MODERATE_NEW_MEMBERS MODERATE_NONE 278 "enableCollaborativeInbox": "A String", # If a primary Collab Inbox feature is enabled. 279 "whoCanContactOwner": "A String", # Permission to contact owner of the group via web UI. Possible values are: ANYONE_CAN_CONTACT ALL_IN_DOMAIN_CAN_CONTACT ALL_MEMBERS_CAN_CONTACT ALL_MANAGERS_CAN_CONTACT 280 "messageDisplayFont": "A String", # Default message display font. Possible values are: DEFAULT_FONT FIXED_WIDTH_FONT 281 "whoCanLeaveGroup": "A String", # Permission to leave the group. Possible values are: ALL_MANAGERS_CAN_LEAVE ALL_OWNERS_CAN_LEAVE ALL_MEMBERS_CAN_LEAVE NONE_CAN_LEAVE 282 "whoCanAdd": "A String", # Permissions to add members. Possible values are: ALL_MANAGERS_CAN_ADD ALL_OWNERS_CAN_ADD ALL_MEMBERS_CAN_ADD NONE_CAN_ADD 283 "whoCanJoin": "A String", # Permissions to join the group. Possible values are: ANYONE_CAN_JOIN ALL_IN_DOMAIN_CAN_JOIN INVITED_CAN_JOIN CAN_REQUEST_TO_JOIN 284 "whoCanMoveTopicsIn": "A String", # Permission to move topics into the group or forum. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 285 "whoCanTakeTopics": "A String", # Permission to take topics in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 286 "whoCanInvite": "A String", # Permissions to invite members. Possible values are: ALL_MEMBERS_CAN_INVITE ALL_MANAGERS_CAN_INVITE ALL_OWNERS_CAN_INVITE NONE_CAN_INVITE 287 "kind": "groupsSettings#groups", # The type of the resource. 288 "name": "A String", # Name of the Group 289 "whoCanApproveMembers": "A String", # Permission to approve members. Possible values are: ALL_OWNERS_CAN_APPROVE ALL_MANAGERS_CAN_APPROVE ALL_MEMBERS_CAN_APPROVE NONE_CAN_APPROVE 290 "spamModerationLevel": "A String", # Moderation level for messages detected as spam. Possible values are: ALLOW MODERATE SILENTLY_MODERATE REJECT 291 "allowWebPosting": "A String", # If posting from web is allowed. 292 "whoCanModerateMembers": "A String", # Permission for membership moderation. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 293 "whoCanAddReferences": "A String", # Permission to add references to a topic. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 294 "whoCanViewGroup": "A String", # Permissions to view group. Possible values are: ANYONE_CAN_VIEW ALL_IN_DOMAIN_CAN_VIEW ALL_MEMBERS_CAN_VIEW ALL_MANAGERS_CAN_VIEW ALL_OWNERS_CAN_VIEW 295 "showInGroupDirectory": "A String", # Is the group listed in groups directory 296 "whoCanLockTopics": "A String", # Permission to lock topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 297 "maxMessageBytes": 42, # Maximum message size allowed. 298 "customFooterText": "A String", # Custom footer text. 299 "allowGoogleCommunication": "A String", # Is google allowed to contact admins. 300 "whoCanHideAbuse": "A String", # Permission to hide posts by reporting them as abuse. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 301 }</pre> 302</div> 303 304<div class="method"> 305 <code class="details" id="update">update(groupUniqueId, body)</code> 306 <pre>Updates an existing resource. 307 308Args: 309 groupUniqueId: string, The resource ID (required) 310 body: object, The request body. (required) 311 The object takes the form of: 312 313{ # JSON template for Group resource 314 "whoCanBanUsers": "A String", # Permission to ban users. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 315 "whoCanAssistContent": "A String", # Permission for content assistants. Possible values are: Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 316 "allowExternalMembers": "A String", # Are external members allowed to join the group. 317 "whoCanEnterFreeFormTags": "A String", # Permission to enter free form tags for topics in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 318 "whoCanApproveMessages": "A String", # Permission to approve pending messages in the moderation queue. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 319 "whoCanMarkDuplicate": "A String", # Permission to mark a topic as a duplicate of another topic. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 320 "whoCanPostMessage": "A String", # Permissions to post messages to the group. Possible values are: NONE_CAN_POST ALL_MANAGERS_CAN_POST ALL_MEMBERS_CAN_POST ALL_OWNERS_CAN_POST ALL_IN_DOMAIN_CAN_POST ANYONE_CAN_POST 321 "whoCanModifyTagsAndCategories": "A String", # Permission to change tags and categories. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 322 "whoCanMarkNoResponseNeeded": "A String", # Permission to mark a topic as not needing a response. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 323 "whoCanPostAnnouncements": "A String", # Permission to post announcements, a special topic type. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 324 "whoCanModerateContent": "A String", # Permission for content moderation. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 325 "primaryLanguage": "A String", # Primary language for the group. 326 "whoCanMarkFavoriteReplyOnOwnTopic": "A String", # Permission to mark a post for a topic they started as a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 327 "whoCanViewMembership": "A String", # Permissions to view membership. Possible values are: ALL_IN_DOMAIN_CAN_VIEW ALL_MEMBERS_CAN_VIEW ALL_MANAGERS_CAN_VIEW ALL_OWNERS_CAN_VIEW 328 "whoCanUnmarkFavoriteReplyOnAnyTopic": "A String", # Permission to unmark any post from a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 329 "favoriteRepliesOnTop": "A String", # If favorite replies should be displayed above other replies. 330 "whoCanMarkFavoriteReplyOnAnyTopic": "A String", # Permission to mark any other user's post as a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 331 "includeCustomFooter": "A String", # Whether to include custom footer. 332 "whoCanDiscoverGroup": "A String", # Permission for who can discover the group. Possible values are: ALL_MEMBERS_CAN_DISCOVER ALL_IN_DOMAIN_CAN_DISCOVER ANYONE_CAN_DISCOVER 333 "whoCanMoveTopicsOut": "A String", # Permission to move topics out of the group or forum. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 334 "defaultMessageDenyNotificationText": "A String", # Default message deny notification message 335 "includeInGlobalAddressList": "A String", # If this groups should be included in global address list or not. 336 "archiveOnly": "A String", # If the group is archive only 337 "whoCanDeleteTopics": "A String", # Permission to delete topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 338 "whoCanDeleteAnyPost": "A String", # Permission to delete replies to topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 339 "isArchived": "A String", # If the contents of the group are archived. 340 "membersCanPostAsTheGroup": "A String", # Can members post using the group email address. 341 "whoCanMakeTopicsSticky": "A String", # Permission to make topics appear at the top of the topic list. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 342 "customRolesEnabledForSettingsToBeMerged": "A String", # If any of the settings that will be merged have custom roles which is anything other than owners, managers, or group scopes. 343 "email": "A String", # Email id of the group 344 "whoCanAssignTopics": "A String", # Permission to assign topics in a forum to another user. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 345 "whoCanModifyMembers": "A String", # Permission to modify members (change member roles). Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 346 "sendMessageDenyNotification": "A String", # Should the member be notified if his message is denied by owner. 347 "description": "A String", # Description of the group 348 "whoCanUnassignTopic": "A String", # Permission to unassign any topic in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 349 "replyTo": "A String", # Whome should the default reply to a message go to. Possible values are: REPLY_TO_CUSTOM REPLY_TO_SENDER REPLY_TO_LIST REPLY_TO_OWNER REPLY_TO_IGNORE REPLY_TO_MANAGERS 350 "customReplyTo": "A String", # Default email to which reply to any message should go. 351 "messageModerationLevel": "A String", # Moderation level for messages. Possible values are: MODERATE_ALL_MESSAGES MODERATE_NON_MEMBERS MODERATE_NEW_MEMBERS MODERATE_NONE 352 "enableCollaborativeInbox": "A String", # If a primary Collab Inbox feature is enabled. 353 "whoCanContactOwner": "A String", # Permission to contact owner of the group via web UI. Possible values are: ANYONE_CAN_CONTACT ALL_IN_DOMAIN_CAN_CONTACT ALL_MEMBERS_CAN_CONTACT ALL_MANAGERS_CAN_CONTACT 354 "messageDisplayFont": "A String", # Default message display font. Possible values are: DEFAULT_FONT FIXED_WIDTH_FONT 355 "whoCanLeaveGroup": "A String", # Permission to leave the group. Possible values are: ALL_MANAGERS_CAN_LEAVE ALL_OWNERS_CAN_LEAVE ALL_MEMBERS_CAN_LEAVE NONE_CAN_LEAVE 356 "whoCanAdd": "A String", # Permissions to add members. Possible values are: ALL_MANAGERS_CAN_ADD ALL_OWNERS_CAN_ADD ALL_MEMBERS_CAN_ADD NONE_CAN_ADD 357 "whoCanJoin": "A String", # Permissions to join the group. Possible values are: ANYONE_CAN_JOIN ALL_IN_DOMAIN_CAN_JOIN INVITED_CAN_JOIN CAN_REQUEST_TO_JOIN 358 "whoCanMoveTopicsIn": "A String", # Permission to move topics into the group or forum. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 359 "whoCanTakeTopics": "A String", # Permission to take topics in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 360 "whoCanInvite": "A String", # Permissions to invite members. Possible values are: ALL_MEMBERS_CAN_INVITE ALL_MANAGERS_CAN_INVITE ALL_OWNERS_CAN_INVITE NONE_CAN_INVITE 361 "kind": "groupsSettings#groups", # The type of the resource. 362 "name": "A String", # Name of the Group 363 "whoCanApproveMembers": "A String", # Permission to approve members. Possible values are: ALL_OWNERS_CAN_APPROVE ALL_MANAGERS_CAN_APPROVE ALL_MEMBERS_CAN_APPROVE NONE_CAN_APPROVE 364 "spamModerationLevel": "A String", # Moderation level for messages detected as spam. Possible values are: ALLOW MODERATE SILENTLY_MODERATE REJECT 365 "allowWebPosting": "A String", # If posting from web is allowed. 366 "whoCanModerateMembers": "A String", # Permission for membership moderation. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 367 "whoCanAddReferences": "A String", # Permission to add references to a topic. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 368 "whoCanViewGroup": "A String", # Permissions to view group. Possible values are: ANYONE_CAN_VIEW ALL_IN_DOMAIN_CAN_VIEW ALL_MEMBERS_CAN_VIEW ALL_MANAGERS_CAN_VIEW ALL_OWNERS_CAN_VIEW 369 "showInGroupDirectory": "A String", # Is the group listed in groups directory 370 "whoCanLockTopics": "A String", # Permission to lock topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 371 "maxMessageBytes": 42, # Maximum message size allowed. 372 "customFooterText": "A String", # Custom footer text. 373 "allowGoogleCommunication": "A String", # Is google allowed to contact admins. 374 "whoCanHideAbuse": "A String", # Permission to hide posts by reporting them as abuse. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 375 } 376 377 378Returns: 379 An object of the form: 380 381 { # JSON template for Group resource 382 "whoCanBanUsers": "A String", # Permission to ban users. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 383 "whoCanAssistContent": "A String", # Permission for content assistants. Possible values are: Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 384 "allowExternalMembers": "A String", # Are external members allowed to join the group. 385 "whoCanEnterFreeFormTags": "A String", # Permission to enter free form tags for topics in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 386 "whoCanApproveMessages": "A String", # Permission to approve pending messages in the moderation queue. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 387 "whoCanMarkDuplicate": "A String", # Permission to mark a topic as a duplicate of another topic. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 388 "whoCanPostMessage": "A String", # Permissions to post messages to the group. Possible values are: NONE_CAN_POST ALL_MANAGERS_CAN_POST ALL_MEMBERS_CAN_POST ALL_OWNERS_CAN_POST ALL_IN_DOMAIN_CAN_POST ANYONE_CAN_POST 389 "whoCanModifyTagsAndCategories": "A String", # Permission to change tags and categories. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 390 "whoCanMarkNoResponseNeeded": "A String", # Permission to mark a topic as not needing a response. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 391 "whoCanPostAnnouncements": "A String", # Permission to post announcements, a special topic type. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 392 "whoCanModerateContent": "A String", # Permission for content moderation. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 393 "primaryLanguage": "A String", # Primary language for the group. 394 "whoCanMarkFavoriteReplyOnOwnTopic": "A String", # Permission to mark a post for a topic they started as a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 395 "whoCanViewMembership": "A String", # Permissions to view membership. Possible values are: ALL_IN_DOMAIN_CAN_VIEW ALL_MEMBERS_CAN_VIEW ALL_MANAGERS_CAN_VIEW ALL_OWNERS_CAN_VIEW 396 "whoCanUnmarkFavoriteReplyOnAnyTopic": "A String", # Permission to unmark any post from a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 397 "favoriteRepliesOnTop": "A String", # If favorite replies should be displayed above other replies. 398 "whoCanMarkFavoriteReplyOnAnyTopic": "A String", # Permission to mark any other user's post as a favorite reply. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 399 "includeCustomFooter": "A String", # Whether to include custom footer. 400 "whoCanDiscoverGroup": "A String", # Permission for who can discover the group. Possible values are: ALL_MEMBERS_CAN_DISCOVER ALL_IN_DOMAIN_CAN_DISCOVER ANYONE_CAN_DISCOVER 401 "whoCanMoveTopicsOut": "A String", # Permission to move topics out of the group or forum. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 402 "defaultMessageDenyNotificationText": "A String", # Default message deny notification message 403 "includeInGlobalAddressList": "A String", # If this groups should be included in global address list or not. 404 "archiveOnly": "A String", # If the group is archive only 405 "whoCanDeleteTopics": "A String", # Permission to delete topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 406 "whoCanDeleteAnyPost": "A String", # Permission to delete replies to topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 407 "isArchived": "A String", # If the contents of the group are archived. 408 "membersCanPostAsTheGroup": "A String", # Can members post using the group email address. 409 "whoCanMakeTopicsSticky": "A String", # Permission to make topics appear at the top of the topic list. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 410 "customRolesEnabledForSettingsToBeMerged": "A String", # If any of the settings that will be merged have custom roles which is anything other than owners, managers, or group scopes. 411 "email": "A String", # Email id of the group 412 "whoCanAssignTopics": "A String", # Permission to assign topics in a forum to another user. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 413 "whoCanModifyMembers": "A String", # Permission to modify members (change member roles). Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 414 "sendMessageDenyNotification": "A String", # Should the member be notified if his message is denied by owner. 415 "description": "A String", # Description of the group 416 "whoCanUnassignTopic": "A String", # Permission to unassign any topic in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 417 "replyTo": "A String", # Whome should the default reply to a message go to. Possible values are: REPLY_TO_CUSTOM REPLY_TO_SENDER REPLY_TO_LIST REPLY_TO_OWNER REPLY_TO_IGNORE REPLY_TO_MANAGERS 418 "customReplyTo": "A String", # Default email to which reply to any message should go. 419 "messageModerationLevel": "A String", # Moderation level for messages. Possible values are: MODERATE_ALL_MESSAGES MODERATE_NON_MEMBERS MODERATE_NEW_MEMBERS MODERATE_NONE 420 "enableCollaborativeInbox": "A String", # If a primary Collab Inbox feature is enabled. 421 "whoCanContactOwner": "A String", # Permission to contact owner of the group via web UI. Possible values are: ANYONE_CAN_CONTACT ALL_IN_DOMAIN_CAN_CONTACT ALL_MEMBERS_CAN_CONTACT ALL_MANAGERS_CAN_CONTACT 422 "messageDisplayFont": "A String", # Default message display font. Possible values are: DEFAULT_FONT FIXED_WIDTH_FONT 423 "whoCanLeaveGroup": "A String", # Permission to leave the group. Possible values are: ALL_MANAGERS_CAN_LEAVE ALL_OWNERS_CAN_LEAVE ALL_MEMBERS_CAN_LEAVE NONE_CAN_LEAVE 424 "whoCanAdd": "A String", # Permissions to add members. Possible values are: ALL_MANAGERS_CAN_ADD ALL_OWNERS_CAN_ADD ALL_MEMBERS_CAN_ADD NONE_CAN_ADD 425 "whoCanJoin": "A String", # Permissions to join the group. Possible values are: ANYONE_CAN_JOIN ALL_IN_DOMAIN_CAN_JOIN INVITED_CAN_JOIN CAN_REQUEST_TO_JOIN 426 "whoCanMoveTopicsIn": "A String", # Permission to move topics into the group or forum. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 427 "whoCanTakeTopics": "A String", # Permission to take topics in a forum. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 428 "whoCanInvite": "A String", # Permissions to invite members. Possible values are: ALL_MEMBERS_CAN_INVITE ALL_MANAGERS_CAN_INVITE ALL_OWNERS_CAN_INVITE NONE_CAN_INVITE 429 "kind": "groupsSettings#groups", # The type of the resource. 430 "name": "A String", # Name of the Group 431 "whoCanApproveMembers": "A String", # Permission to approve members. Possible values are: ALL_OWNERS_CAN_APPROVE ALL_MANAGERS_CAN_APPROVE ALL_MEMBERS_CAN_APPROVE NONE_CAN_APPROVE 432 "spamModerationLevel": "A String", # Moderation level for messages detected as spam. Possible values are: ALLOW MODERATE SILENTLY_MODERATE REJECT 433 "allowWebPosting": "A String", # If posting from web is allowed. 434 "whoCanModerateMembers": "A String", # Permission for membership moderation. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 435 "whoCanAddReferences": "A String", # Permission to add references to a topic. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 436 "whoCanViewGroup": "A String", # Permissions to view group. Possible values are: ANYONE_CAN_VIEW ALL_IN_DOMAIN_CAN_VIEW ALL_MEMBERS_CAN_VIEW ALL_MANAGERS_CAN_VIEW ALL_OWNERS_CAN_VIEW 437 "showInGroupDirectory": "A String", # Is the group listed in groups directory 438 "whoCanLockTopics": "A String", # Permission to lock topics. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 439 "maxMessageBytes": 42, # Maximum message size allowed. 440 "customFooterText": "A String", # Custom footer text. 441 "allowGoogleCommunication": "A String", # Is google allowed to contact admins. 442 "whoCanHideAbuse": "A String", # Permission to hide posts by reporting them as abuse. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS 443 }</pre> 444</div> 445 446</body></html>