A builder that creates API-compatible JSON data for attachments.
Implements
JSONEncodable<RESTAPIAttachment>Creates new attachment builder from API data.
Name | Type | Optional | Description |
---|---|---|---|
data | Partial<RESTAPIAttachment> | Yes | The API data to create this attachment with |
Clears the description of this attachment.
Clears the duration of this attachment.
Clears the filename of this attachment.
Clears the id of this attachment.
Clears the title of this attachment.
Clears the waveform of this attachment.
Sets the description of this attachment.
Name | Type | Optional | Description |
---|---|---|---|
description | string | No | None |
Sets the duration of this attachment (audio clips).
Name | Type | Optional | Description |
---|---|---|---|
duration | number | No | The duration of the attachment in seconds |
Sets the filename of this attachment.
Name | Type | Optional | Description |
---|---|---|---|
filename | string | No | The filename of the attachment |
Name | Type | Optional | Description |
---|---|---|---|
id | Snowflake | No | The id of the attachment |
Sets the title of this attachment.
Name | Type | Optional | Description |
---|---|---|---|
title | string | No | The title of the attachment |
Sets the waveform of this attachment.
Name | Type | Optional | Description |
---|---|---|---|
waveform | string | No | The waveform of the attachment |
Serializes this builder to API-compatible JSON data.Note that by disabling validation, there is no guarantee that the resulting object will be valid.
Name | Type | Optional | Description |
---|---|---|---|
validationOverride | boolean | Yes | Force validation to run/not run regardless of your global preference |