Member Junction
    Preparing search index...

    The arguments the native addon's join() accepts. Mirrors TeamsJoinArgs plus raw-audio opts.

    interface NativeJoinArgs {
        accessToken?: string;
        channels?: number;
        displayName: string;
        joinUrl: string;
        sampleRate?: number;
        tenantId?: string;
        threadId?: string;
    }
    Index

    Properties

    accessToken?: string

    The OAuth bearer / application token authorizing the bot's Graph + ACS calls (resolved upstream; never inline).

    channels?: number

    Raw-audio channel count, when the addon needs it told.

    displayName: string

    The bot's display name in the participant list.

    joinUrl: string

    The Teams meeting join URL (the https://teams.microsoft.com/l/meetup-join/... link).

    sampleRate?: number

    Raw-audio sample rate the bot sends/receives (Hz), when the addon needs it told.

    tenantId?: string

    The Azure tenant id the meeting belongs to, when joining cross-tenant.

    threadId?: string

    The parsed meeting thread id (chat/conversation id behind the join URL), when resolved upstream.