Interface CreateSoundboardSoundOptions

interface CreateSoundboardSoundOptions {
    emojiID?: string;
    emojiName?: string;
    name: string;
    reason?: string;
    sound: string | Buffer;
    volume?: number;
}

Properties

emojiID?: string

The ID of the emoji of the soundboard sound.

emojiName?: string

The name of the emoji of the soundboard sound.

name: string

The name of the soundboard sound.

reason?: string

The reason for creating the soundboard sound.

sound: string | Buffer

The mp3 or ogg sound data.

volume?: number

The volume of the soundboard sound.