Microsoft Graph · Schema
teamMessagingSettings
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| allowChannelMentions | boolean | If set to true, @channel mentions are allowed. |
| allowOwnerDeleteMessages | boolean | If set to true, owners can delete any message. |
| allowTeamMentions | boolean | If set to true, @team mentions are allowed. |
| allowUserDeleteMessages | boolean | If set to true, users can delete their messages. |
| allowUserEditMessages | boolean | If set to true, users can edit their messages. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.teamMessagingSettings",
"title": "teamMessagingSettings",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"allowChannelMentions": {
"type": "boolean",
"description": "If set to true, @channel mentions are allowed.",
"nullable": true
},
"allowOwnerDeleteMessages": {
"type": "boolean",
"description": "If set to true, owners can delete any message.",
"nullable": true
},
"allowTeamMentions": {
"type": "boolean",
"description": "If set to true, @team mentions are allowed.",
"nullable": true
},
"allowUserDeleteMessages": {
"type": "boolean",
"description": "If set to true, users can delete their messages.",
"nullable": true
},
"allowUserEditMessages": {
"type": "boolean",
"description": "If set to true, users can edit their messages.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}