Skip to content

Latest commit

 

History

History
58 lines (50 loc) · 2.05 KB

thumbnailSet.md

File metadata and controls

58 lines (50 loc) · 2.05 KB
author ms.author ms.date title ms.localizationpriority
JeremyKelley
JeremyKe
09/10/2017
ThumbnailSet - OneDrive API
Medium

ThumbnailSet resource type

The ThumbnailSet resource is a keyed collection of thumbnail resources. It is used to represent a set of thumbnails associated with a DriveItem.

JSON representation

Here is a JSON representation of the resource.

{
  "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.