Member Junction
    Preparing search index...

    Arguments to IDiscordVoiceSdk.joinVoiceChannel — what the bot needs to get into a voice channel.

    interface DiscordJoinArgs {
        BotDisplayName: string;
        BotToken?: string;
        GuildId: string;
        VoiceChannelId: string;
    }
    Index

    Properties

    BotDisplayName: string

    The display name / nickname the bot appears as in the member list.

    BotToken?: string

    The resolved bot token (or equivalent auth payload) authorizing the gateway connection. Resolved upstream through MJ's credential system; never inline secrets.

    GuildId: string

    The Discord guild (server) id that owns the voice channel.

    VoiceChannelId: string

    The Discord voice-channel id the bot joins.