class AttachmentBuilder

export declare class AttachmentBuilder implements JSONEncodable<RESTAPIAttachment>

A builder that creates API-compatible JSON data for attachments.

Constructors

constructor()

Creates new attachment builder from API data.

clearDescription() : this

Clears the description of this attachment.

clearDuration() : this

Clears the duration of this attachment.

clearFilename() : this

Clears the filename of this attachment.

clearId() : this

Clears the id of this attachment.

clearTitle() : this

Clears the title of this attachment.

clearWaveform() : this

Clears the waveform of this attachment.

setDescription(
description: string
) : this

Sets the description of this attachment.

setDuration(
duration: number
) : this

Sets the duration of this attachment (audio clips).

setFilename(
filename: string
) : this

Sets the filename of this attachment.

setId() : this

setTitle(
title: string
) : this

Sets the title of this attachment.

setWaveform(
waveform: string
) : this

Sets the waveform of this attachment.

toJSON(
validationOverride?: boolean
) : RESTAPIAttachment

Serializes this builder to API-compatible JSON data.Note that by disabling validation, there is no guarantee that the resulting object will be valid.