Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
IReminderHelper.java
Go to the documentation of this file.
1
2package us.zoom.sdk;
3
4import java.util.List;
5
9public interface IReminderHelper {
10
14 interface IReminderContent {
15
22
28 List<ReminderType> getMultiReminderTypes();
29
35 String getTitle();
36
42 String getContent();
43
49 boolean isBlocking();
50
57 }
58
98
173
174
187
194}
Enumeration of common SDK errors.
ReminderType getType()
Gets the reminder's type.
String getTitle()
Gets the reminder dialog content's title.
List< ReminderType > getMultiReminderTypes()
Gets the list of reminder types.
ActionType getActionType()
Gets the type of action the user should take after receiving this reminder content.
String getContent()
Gets the detail content of the reminder dialog.
boolean isBlocking()
Determines whether to block the user from joining or staying in the meeting.
void onReminderNotify(IReminderContent content, IReminderHandler handle)
Callback event when the reminder dialog displays.
Interface to handle the reminder dialog.
boolean isNeedExplicitConsent4AICustomDisclaimer()
Determines whether explicit consent is needed for AI custom disclaimer. Only valid for ReminderType....
MobileRTCSDKError accept()
Accepts the reminder.
MobileRTCSDKError ignore()
Ignores the reminder.
MobileRTCSDKError decline()
Declines the reminder.
MobileRTCSDKError setHideFeatureDisclaimers()
Sets not to show the disclaimer in subsequent meetings.
Helper to handle reminder dialog.
void setEvent(IReminderEvent pEvent)
Sets the reminder callback event handler.