Microsoft Graph · Schema

serviceUpdateMessageViewpoint

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isArchived boolean Indicates whether the user archived the message.
isFavorited boolean Indicates whether the user marked the message as favorite.
isRead boolean Indicates whether the user read the message.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphserviceupdatemessageviewpoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.serviceUpdateMessageViewpoint",
  "title": "serviceUpdateMessageViewpoint",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isArchived": {
      "type": "boolean",
      "description": "Indicates whether the user archived the message.",
      "nullable": true
    },
    "isFavorited": {
      "type": "boolean",
      "description": "Indicates whether the user marked the message as favorite.",
      "nullable": true
    },
    "isRead": {
      "type": "boolean",
      "description": "Indicates whether the user read the message.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}