Meeting SDK for Windows API Reference
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IZoomRealNameAuthMeetingEvent Class Referenceabstract

Real name auth meeting callback event. More...

#include <zoom_sdk_sms_helper_interface.h>

Public Member Functions

virtual void onNeedRealNameAuthMeetingNotification (IVector< IZoomRealNameAuthCountryInfo * > *support_country_list, const zTCHAR *privacy_url, IZoomRetrieveSMSVerificationCodeHandler *handler)=0
 If real name auth is needed, this callback will be triggered.
 
virtual void onRetrieveSMSVerificationCodeResultNotification (SMSVerificationCodeErr result, IZoomVerifySMSVerificationCodeHandler *handler)=0
 The callback event for retrieving SMS verification code.
 
virtual void onVerifySMSVerificationCodeResultNotification (SMSVerificationCodeErr result)=0
 The callback event for verification.
 
virtual ~IZoomRealNameAuthMeetingEvent ()
 

Detailed Description

Real name auth meeting callback event.

Definition at line 76 of file zoom_sdk_sms_helper_interface.h.

Constructor & Destructor Documentation

◆ ~IZoomRealNameAuthMeetingEvent()

virtual IZoomRealNameAuthMeetingEvent::~IZoomRealNameAuthMeetingEvent ( )
inlinevirtual

Definition at line 95 of file zoom_sdk_sms_helper_interface.h.

95{}

Member Function Documentation

◆ onNeedRealNameAuthMeetingNotification()

virtual void IZoomRealNameAuthMeetingEvent::onNeedRealNameAuthMeetingNotification ( IVector< IZoomRealNameAuthCountryInfo * > * support_country_list,
const zTCHAR * privacy_url,
IZoomRetrieveSMSVerificationCodeHandler * handler )
pure virtual

If real name auth is needed, this callback will be triggered.

Parameters
support_country_listThe list of the supporting country information.
privacy_urlThe privacy url.
handlerA pointer to the IZoomRetrieveSMSVerificationCodeHandler. The SDK user can retrieve the verification code via the functions of IZoomRetrieveSMSVerificationCodeHandler. For more details, see IZoomRetrieveSMSVerificationCodeHandler.

◆ onRetrieveSMSVerificationCodeResultNotification()

virtual void IZoomRealNameAuthMeetingEvent::onRetrieveSMSVerificationCodeResultNotification ( SMSVerificationCodeErr result,
IZoomVerifySMSVerificationCodeHandler * handler )
pure virtual

The callback event for retrieving SMS verification code.

Parameters
resultSpecifies the result of retrieve. For more details, see SMSVerificationCodeErr enum.
handlerA pointer to the IZoomVerifySMSVerificationCodeHandler. It is only valid when the value of result is SMSVerificationCodeErr_Success. The SDK user can do the verification via the functions of IZoomVerifySMSVerificationCodeHandler. For more details, see IZoomVerifySMSVerificationCodeHandler.

◆ onVerifySMSVerificationCodeResultNotification()

virtual void IZoomRealNameAuthMeetingEvent::onVerifySMSVerificationCodeResultNotification ( SMSVerificationCodeErr result)
pure virtual

The callback event for verification.

Parameters
resultSpecifies the result of verification.