ThumbnailSet 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.
The ThumbnailSet resource is a keyed collection of thumbnail resources. It's used to represent a set of thumbnails associated with a DriveItem.
JSON representation
The following JSON representation shows the resource type.
{
"id": "string (identifier)",
"large": { "@odata.type": "microsoft.graph.thumbnail" },
"medium": { "@odata.type": "microsoft.graph.thumbnail" },
"small": { "@odata.type": "microsoft.graph.thumbnail" },
"source": { "@odata.type": "microsoft.graph.thumbnail" }
}
Properties
Property | Type | Description |
---|---|---|
id | String | The ID within the item. Read-only. |
large | Thumbnail | A 1920x1920 scaled thumbnail. |
medium | Thumbnail | A 176x176 scaled thumbnail. |
small | Thumbnail | A 48x48 cropped thumbnail. |
source | Thumbnail | A custom thumbnail image or the original image used to generate other thumbnails. |