fetchAttendeeList abstract method
Fetch a list of attendees invited to the scheduled conference.
roomId
The conference ID, which is the room ID.
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 attendee to fetch this time.
Implementation
Future<TUIValueCallBack<TUIScheduledAttendeesResult>> fetchAttendeeList(
String roomId, String cursor, int count);