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

if the current user can control web setting, they will get this handler when an attendee requests to start the smart recording feature or start feature by itself. More...

#include <meeting_reminder_ctrl_interface.h>

Public Member Functions

virtual ~IMeetingEnableReminderHandler ()
 
virtual SDKError SetEnableOption (FeatureEnableOption option)=0
 Set the option indicating which meetings feature will be enabled for.
 
virtual SDKError Start ()=0
 Start the feature.
 
virtual SDKError Decline (bool bDeclineAll)=0
 Decline the reminder.
 
virtual SDKError Ignore ()=0
 Ignore the reminder.
 

Detailed Description

if the current user can control web setting, they will get this handler when an attendee requests to start the smart recording feature or start feature by itself.

Definition at line 127 of file meeting_reminder_ctrl_interface.h.

Constructor & Destructor Documentation

◆ ~IMeetingEnableReminderHandler()

virtual IMeetingEnableReminderHandler::~IMeetingEnableReminderHandler ( )
inlinevirtual

Definition at line 130 of file meeting_reminder_ctrl_interface.h.

130{};

Member Function Documentation

◆ Decline()

virtual SDKError IMeetingEnableReminderHandler::Decline ( bool bDeclineAll)
pure virtual

Decline the reminder.

Parameters
bDeclineAllTRUE means decline all reminders,and participants cannot send requests again until the host changes the setting. FALSE means that the host declines only this specific request, not all requests.
Returns
If the function succeeds, the return value is SDKErr_Success. Otherwise the function fails. To get extended error information, see SDKError enum.

◆ Ignore()

virtual SDKError IMeetingEnableReminderHandler::Ignore ( )
pure virtual

Ignore the reminder.

◆ SetEnableOption()

virtual SDKError IMeetingEnableReminderHandler::SetEnableOption ( FeatureEnableOption option)
pure virtual

Set the option indicating which meetings feature will be enabled for.

Parameters
optionSpecify the option.
Returns
If the function succeeds, the return value is SDKErr_Success. Otherwise the function fails. To get extended error information, see SDKError enum.

◆ Start()

virtual SDKError IMeetingEnableReminderHandler::Start ( )
pure virtual

Start the feature.

Returns
If the function succeeds, the return value is SDKErr_Success. Otherwise the function fails. To get extended error information, see SDKError enum.