@zoom/react-native-videosdk
    Preparing search index...

    Type Alias ZoomVideoSdkPhoneHelperType

    type ZoomVideoSdkPhoneHelperType = {
        cancelInviteByPhone: () => Promise<Errors>;
        getInviteByPhoneStatus: () => Promise<PhoneStatus>;
        getSessionDialInNumbers: () => Promise<
            ZoomVideoSdkSessionDialInNumberInfo[],
        >;
        getSupportCountryInfo: () => Promise<ZoomVideoSdkPhoneSupportCountryInfo[]>;
        inviteByPhone: (
            countryCode: string,
            phoneNumber: string,
            name: string,
        ) => Promise<Errors>;
        isSupportPhoneFeature: () => Promise<boolean>;
    }

    Implemented by

    Index

    Properties

    cancelInviteByPhone: () => Promise<Errors>

    Cancel the invitation that is being called out by phone.

    getInviteByPhoneStatus: () => Promise<PhoneStatus>

    Get the status of the invitation by phone.

    getSessionDialInNumbers: () => Promise<ZoomVideoSdkSessionDialInNumberInfo[]>

    Get the Video SDK dial in number information list.

    getSupportCountryInfo: () => Promise<ZoomVideoSdkPhoneSupportCountryInfo[]>

    Get the list of the country information where the session supports to join by telephone.

    inviteByPhone: (
        countryCode: string,
        phoneNumber: string,
        name: string,
    ) => Promise<Errors>

    Invite the specified user to join the session by call out.

    isSupportPhoneFeature: () => Promise<boolean>

    Determine if the session supports join by phone or not.