Microsoft Graph · Schema

automaticRepliesMailTips

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
message string The automatic reply message.
messageLanguage object The language that the automatic reply message is in.
scheduledEndTime object The date and time that automatic replies are set to end.
scheduledStartTime object The date and time that automatic replies are set to begin.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphautomaticrepliesmailtips-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.automaticRepliesMailTips",
  "title": "automaticRepliesMailTips",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "The automatic reply message.",
      "nullable": true
    },
    "messageLanguage": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.localeInfo"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The language that the automatic reply message is in."
    },
    "scheduledEndTime": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The date and time that automatic replies are set to end."
    },
    "scheduledStartTime": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The date and time that automatic replies are set to begin."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}