serviceAnnouncementBase resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
This is an abstract base type for serviceHealthIssue and serviceUpdateMessage.
Inherits from entity.
Methods
None.
Properties
Property | Type | Description |
---|---|---|
details | Collection(keyValuePair) | Extra 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"
}
]
}