class ThumbnailBuilder

export declare class ThumbnailBuilder extends ComponentBuilder<APIThumbnailComponent>

Constructors

constructor()

Creates a new thumbnail from API data.

Examples:Creating a thumbnail from an API data object:
const thumbnail = new ThumbnailBuilder({
	description: 'some text',
 media: {
     url: 'https://cdn.discordapp.com/embed/avatars/4.png',
 },
});
Creating a thumbnail using setters and API data:
const thumbnail = new ThumbnailBuilder({
	media: {
     url: 'attachment://image.png',
 },
})
	.setDescription('alt text');

The API data associated with this component.

Inherited from: ComponentBuilder

clearDescription() : this

Clears the description of this thumbnail.

clearId() : this

Clears the id of this component, defaulting to a default incremented id.

Inherited from: ComponentBuilder

setDescription(
description: string
) : this

Sets the description of this thumbnail.

setId(
id: number
) : this

Sets the id (not the custom id) for this component.

Inherited from: ComponentBuilder

setSpoiler(
spoiler?: boolean
) : this

Sets the spoiler status of this thumbnail.

setURL(
url: string
) : this

Sets the media URL of this thumbnail.

Serializes this builder to API-compatible JSON data.