Package us.zoom.sdk
Interface IMeetingInputUserInfoHandler
public interface IMeetingInputUserInfoHandler
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cancel()
Cancel to join meetingboolean
Check whether the user can modify default display nameGet default display nameinputUserInfo
(String name, String email) input user infoboolean
isValidEmail
(String email) Check whether the inputted email is a valid email format.
-
Method Details
-
getDefaultDisplayName
String getDefaultDisplayName()Get default display name- Returns:
- default display name
-
canModifyDefaultDisplayName
boolean canModifyDefaultDisplayName()Check whether the user can modify default display name- Returns:
- true means can modify default display name
-
isValidEmail
Check whether the inputted email is a valid email format. The email must meet the email format requirements. The email input by the logged-in user must be the same as the user account.- Returns:
- True If the email input is valid
-
inputUserInfo
input user info- Parameters:
name
- The display name to input.email
- The email to input.
-
cancel
void cancel()Cancel to join meeting
-