fetchScheduledConferenceList abstract method
Future<TUIValueCallBack<TUIScheduledConferenceListResult> >
fetchScheduledConferenceList(
- List<
TUIConferenceStatus> status, - String cursor,
- int count
Fetch a list of scheduled conference.
status
Conference status.
cursor
Pagination index retrieval. For the first fetch, use an empty string. If the callback returns data with a non-empty cursor, it indicates that pagination is needed. Please call the interface again using the returned cursor as the
parameter until the cursor returned is empty, indicating that all data has been fetched.
count
The number of conference to fetch this time.
Implementation
Future<TUIValueCallBack<TUIScheduledConferenceListResult>>
fetchScheduledConferenceList(
List<TUIConferenceStatus> status, String cursor, int count);