public class ThumbnailSet extends Object
https://docs.microsoft.com/en-us/graph/api/resources/thumbnailset?view=graph-rest-1.0 The ThumbnailSet resource is a keyed collection of thumbnail resources. It is used to represent a set of thumbnails associated with a DriveItem.
Constructor and Description |
---|
ThumbnailSet() |
Modifier and Type | Method and Description |
---|---|
String |
getId()
The id within the item.Read-only.
|
Thumbnail |
getLarge()
A 1920x1920 scaled thumbnail.
|
Thumbnail |
getMedium()
A 176x176 scaled thumbnail.
|
Thumbnail |
getSmall()
A 48x48 cropped thumbnail.
|
Thumbnail |
getSource()
A custom thumbnail image or the original image used to generate other thumbnails.
|
void |
setId(String value)
The id within the item.Read-only.
|
void |
setLarge(Thumbnail value)
A 1920x1920 scaled thumbnail.
|
void |
setMedium(Thumbnail value)
A 176x176 scaled thumbnail.
|
void |
setSmall(Thumbnail value)
A 48x48 cropped thumbnail.
|
void |
setSource(Thumbnail value)
A custom thumbnail image or the original image used to generate other thumbnails.
|
public final String getId()
The id within the item.Read-only.
public final void setId(String value)
The id within the item.Read-only.
public final Thumbnail getLarge()
A 1920x1920 scaled thumbnail.
public final void setLarge(Thumbnail value)
A 1920x1920 scaled thumbnail.
public final Thumbnail getMedium()
A 176x176 scaled thumbnail.
public final void setMedium(Thumbnail value)
A 176x176 scaled thumbnail.
public final Thumbnail getSmall()
A 48x48 cropped thumbnail.
public final void setSmall(Thumbnail value)
A 48x48 cropped thumbnail.
public final Thumbnail getSource()
A custom thumbnail image or the original image used to generate other thumbnails.
public final void setSource(Thumbnail value)
A custom thumbnail image or the original image used to generate other thumbnails.