serviceAnnouncementBase resource type

Namespace: microsoft.graph

This is an abstract base type for serviceHealthIssue and serviceUpdateMessage.

Inherits from entity.

Methods

None.

Properties

Property Type Description
details Collection(keyValuePair) More details about service event. This property doesn't support filters.
endDateTime DateTimeOffset The end time of the service event.
id String The ID of the service event.
lastModifiedDateTime DateTimeOffset The last modified time of the service event.
startDateTime DateTimeOffset The start time of the service event.
title String The title of the service event.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.serviceAnnouncementBase",
  "id": "String (identifier)",
  "startDateTime": "String (timestamp)",
  "endDateTime": "String (timestamp)",
  "lastModifiedDateTime": "String (timestamp)",
  "title": "String",
  "details": [
    {
      "@odata.type": "microsoft.graph.keyValuePair"
    }
  ]
}