Microsoft Graph · Schema

callOptions

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
hideBotAfterEscalation boolean Indicates whether to hide the app after the call is escalated.
isContentSharingNotificationEnabled boolean Indicates whether content sharing notifications should be enabled for the call.
isDeltaRosterEnabled boolean Indicates whether delta roster is enabled for the call.
isInteractiveRosterEnabled boolean Indicates whether delta roster filtering by participant interactivity is enabled.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcalloptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.callOptions",
  "title": "callOptions",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "hideBotAfterEscalation": {
      "type": "boolean",
      "description": "Indicates whether to hide the app after the call is escalated.",
      "nullable": true
    },
    "isContentSharingNotificationEnabled": {
      "type": "boolean",
      "description": "Indicates whether content sharing notifications should be enabled for the call.",
      "nullable": true
    },
    "isDeltaRosterEnabled": {
      "type": "boolean",
      "description": "Indicates whether delta roster is enabled for the call.",
      "nullable": true
    },
    "isInteractiveRosterEnabled": {
      "type": "boolean",
      "description": "Indicates whether delta roster filtering by participant interactivity is enabled.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "discriminator": {
    "propertyName": "@odata.type",
    "mapping": {
      "#microsoft.graph.incomingCallOptions": "#/components/schemas/microsoft.graph.incomingCallOptions",
      "#microsoft.graph.outgoingCallOptions": "#/components/schemas/microsoft.graph.outgoingCallOptions"
    }
  }
}