class AttachmentBuilder
implements
JSONEncodable<RESTAPIAttachment>export declare class AttachmentBuilder implements JSONEncodable<RESTAPIAttachment>
A builder that creates API-compatible JSON data for attachments.
Constructors
data?: Partial<RESTAPIAttachment>)
constructor(data?: Partial<RESTAPIAttachment>
Creates new attachment builder from API data.
setDescriptiondescription: string) : this (
description: string
Sets the description of this attachment.
setDurationduration: number) : this (
duration: number
Sets the duration of this attachment (audio clips).
setFilenamefilename: string) : this (
filename: string
Sets the filename of this attachment.
setIdid: Snowflake) : this (
id: Snowflake
setTitletitle: string) : this (
title: string
Sets the title of this attachment.
setWaveformwaveform: string) : this (
waveform: string
Sets the waveform of this attachment.
toJSONvalidationOverride?: boolean) : RESTAPIAttachment (
validationOverride?: boolean
Serializes this builder to API-compatible JSON data.Note that by disabling validation, there is no guarantee that the resulting object will be valid.