Meeting SDK for Windows API Reference
Loading...
Searching...
No Matches
IZoomVerifySMSVerificationCodeHandler Class Referenceabstract

Verify SMS verification code handler interface. More...

#include <zoom_sdk_sms_helper_interface.h>

Public Member Functions

virtual bool Verify (const zTCHAR *country_code, const zTCHAR *phone_number, const zTCHAR *verification_code)=0
 Verifies the SMS verification code.
 
virtual bool CancelAndLeaveMeeting ()=0
 Ignores the prompt of verifying the verification code and leaves meeting.
 
virtual ~IZoomVerifySMSVerificationCodeHandler ()
 

Detailed Description

Verify SMS verification code handler interface.

Definition at line 40 of file zoom_sdk_sms_helper_interface.h.

Constructor & Destructor Documentation

◆ ~IZoomVerifySMSVerificationCodeHandler()

virtual IZoomVerifySMSVerificationCodeHandler::~IZoomVerifySMSVerificationCodeHandler ( )
inlinevirtual

Definition at line 60 of file zoom_sdk_sms_helper_interface.h.

60{}

Member Function Documentation

◆ CancelAndLeaveMeeting()

virtual bool IZoomVerifySMSVerificationCodeHandler::CancelAndLeaveMeeting ( )
pure virtual

Ignores the prompt of verifying the verification code and leaves meeting.

Returns
true if the function succeeds. Otherwise, false.
Note
The handler will become invalid and destroyed after calling this function successfully.

◆ Verify()

virtual bool IZoomVerifySMSVerificationCodeHandler::Verify ( const zTCHAR * country_code,
const zTCHAR * phone_number,
const zTCHAR * verification_code )
pure virtual

Verifies the SMS verification code.

Parameters
country_codeThe country code.
phone_numberThe phone number.
verification_codeThe verification code.
Returns
true if the function succeeds. Otherwise, false.
Note
The handler will become invalid after calling this function successfully.