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

The handler to send query. More...

#include <meeting_ai_companion_interface.h>

Public Member Functions

virtual ~IMeetingSendQueryHandler ()
 
virtual IList< const zchar_t * > * GetDefaultQueryQuestions ()=0
 Get default query questions.
 
virtual SDKError SendQueryQuestion (const zchar_t *sQuestion)=0
 Send query question.
 
virtual SDKError StopMeetingQuery ()=0
 Stop meeting query.
 
virtual bool CanSendQuery ()=0
 Determine if the current user can send query.
 
virtual SDKError RequestSendQueryPrivilege ()=0
 Request send query privilege.
 

Detailed Description

The handler to send query.

Definition at line 585 of file meeting_ai_companion_interface.h.

Constructor & Destructor Documentation

◆ ~IMeetingSendQueryHandler()

virtual IMeetingSendQueryHandler::~IMeetingSendQueryHandler ( )
inlinevirtual

Definition at line 588 of file meeting_ai_companion_interface.h.

588{}

Member Function Documentation

◆ CanSendQuery()

virtual bool IMeetingSendQueryHandler::CanSendQuery ( )
pure virtual

Determine if the current user can send query.

Returns
true means can, otherwise not.

◆ GetDefaultQueryQuestions()

virtual IList< const zchar_t * > * IMeetingSendQueryHandler::GetDefaultQueryQuestions ( )
pure virtual

Get default query questions.

Returns
If the function succeeds, it returns the array of questions. Otherwise returns nullptr.

◆ RequestSendQueryPrivilege()

virtual SDKError IMeetingSendQueryHandler::RequestSendQueryPrivilege ( )
pure virtual

Request send query privilege.

Returns
If the function succeeds, it returns ZoomSDKError_Success Otherwise failed. For detailed error codes, see the SDKError enum.

◆ SendQueryQuestion()

virtual SDKError IMeetingSendQueryHandler::SendQueryQuestion ( const zchar_t * sQuestion)
pure virtual

Send query question.

Parameters
questionThe query question.
Returns
If the function succeeds, the return value is SDKERR_SUCCESS. Otherwise failed. For detailed error codes, see the SDKError enum.

◆ StopMeetingQuery()

virtual SDKError IMeetingSendQueryHandler::StopMeetingQuery ( )
pure virtual

Stop meeting query.

Returns
If the function succeeds, the return value is SDKERR_SUCCESS. Otherwise failed. For detailed error codes, see the SDKError enum.