interface APISoundboardSound {
    available: boolean;
    emoji_id: null | string;
    emoji_name: null | string;
    guild_id?: string;
    name: string;
    sound_id: string;
    user?: APIUser;
    volume: number;
}

Properties

available: boolean

Whether this sound can be used (for guild sounds), may be false due to loss of Server Boosts

emoji_id: null | string

The id of this sound's custom emoji

emoji_name: null | string

The unicode character of this sound's standard emoji

guild_id?: string

The id of the guild that this sound is in

name: string

The name of this sound

sound_id: string

The id of this sound

user?: APIUser

The user who created this sound

volume: number

The volume of this sound, from 0 to 1