Member Junction
    Preparing search index...

    One voice-channel member as the native addon reports it. Mapped onto DiscordMember.

    interface NativeVoiceMember {
        displayName?: string;
        isSelf?: boolean;
        role?: string;
        userId: string | number;
    }
    Index

    Properties

    displayName?: string

    The member's display name (guild nickname / username).

    isSelf?: boolean

    Whether this member is the bot itself.

    role?: string

    The member's role as the addon reports it (host/owner/admin → Host, moderator → CoHost, else Participant).

    userId: string | number

    The Discord user (snowflake) id.