plannerTaskDetails resource type

Namespace: microsoft.graph

Represents the additional information about a task. Each task object has a details object.

Methods

Method Return Type Description
Get plannerTaskDetails plannerTaskDetails Read properties and relationships of plannerTaskDetails object.
Update plannerTaskDetails Update plannerTaskDetails object.

Properties

Property Type Description
checklist plannerChecklistItems The collection of checklist items on the task.
description String Description of the task.
id String Read-only. ID of the task details. It's 28 characters long and case-sensitive. Format validation is done on the service.
previewType string This sets the type of preview that shows up on the task. The possible values are: automatic, noPreview, checklist, description, reference. When set to automatic the displayed preview is chosen by the app viewing the task.
references plannerExternalReferences The collection of references on the task.

Relationships

None.

JSON representation

Here's a JSON representation of the resource.

{
  "checklist": {"@odata.type": "microsoft.graph.plannerChecklistItems"},
  "description": "String",
  "id": "String (identifier)",
  "previewType": "string",
  "references": {"@odata.type": "microsoft.graph.plannerExternalReferences"}
}