Windows SDK 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
 Verify the sms verification code. More...
 
virtual bool CancelAndLeaveMeeting ()=0
 Ignore the prompt of verifying the verification code and leave meeting. More...
 
virtual ~IZoomVerifySMSVerificationCodeHandler ()
 

Detailed Description

Verify SMS verification code handler interface.

Definition at line 23 of file zoom_sdk_sms_helper_interface.h.

Constructor & Destructor Documentation

◆ ~IZoomVerifySMSVerificationCodeHandler()

virtual IZoomVerifySMSVerificationCodeHandler::~IZoomVerifySMSVerificationCodeHandler ( )
inlinevirtual

Definition at line 38 of file zoom_sdk_sms_helper_interface.h.

38{}

Member Function Documentation

◆ CancelAndLeaveMeeting()

virtual bool IZoomVerifySMSVerificationCodeHandler::CancelAndLeaveMeeting ( )
pure virtual

Ignore the prompt of verifying the verification code and leave meeting.

Returns
If the function succeeds, the return value is TRUE.
Remarks
The handler will become invalid and destroied after calling this function successfully.

◆ Verify()

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

Verify the sms verification code.

Parameters
country_codeSpecifies the country code.
phone_numberSpecifies the phone number.
verification_codeSpecifies the verification code.
Returns
If the function succeeds, the return value is TRUE.
Remarks
The handler will become invalid after calling this function successfully.