Member Junction
    Preparing search index...

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

    interface NativeJoinArgs {
        accessToken?: string;
        channels?: number;
        displayName: string;
        meetingLink: string;
        meetingNumber?: string;
        sampleRate?: number;
        siteUrl?: string;
    }
    Index

    Properties

    accessToken?: string

    The Webex bot/OAuth access token authorizing the join (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.

    meetingLink: string

    The Webex meeting link the bot joins (the durable join coordinate).

    meetingNumber?: string

    The parsed meeting number / SIP address, when resolved upstream.

    sampleRate?: number

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

    siteUrl?: string

    The Webex site (org) the meeting belongs to, when joining cross-site.