Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
us.zoom.sdk.AlternativeHost Class Reference

Alternative host user information. More...

Public Member Functions

 AlternativeHost ()
 
 AlternativeHost (String email, String firstName, String lastName, String picUrl, long pmi)
 
 AlternativeHost (String email)
 Alternative host's information.
 
String getEmail ()
 
void setEmail (String email)
 
String getFirstName ()
 
void setFirstName (String firstName)
 
String getLastName ()
 
void setLastName (String lastName)
 
String getPicUrl ()
 
void setPicUrl (String picUrl)
 
long getPmi ()
 
void setPmi (long pmi)
 

Private Attributes

String email
 
String firstName
 
String lastName
 
String picUrl
 
long pmi
 

Detailed Description

Alternative host user information.

Definition at line 5 of file AlternativeHost.java.

Constructor & Destructor Documentation

◆ AlternativeHost() [1/3]

us.zoom.sdk.AlternativeHost.AlternativeHost ( )
inline

Definition at line 12 of file AlternativeHost.java.

12 {
13
14 }

◆ AlternativeHost() [2/3]

us.zoom.sdk.AlternativeHost.AlternativeHost ( String email,
String firstName,
String lastName,
String picUrl,
long pmi )
inline

Alternative host's information.

Parameters
emailThe email box of alternative host.
firstNameThe first name of alternative host.
lastNameThe last name of alternative host.
picUrlThe link of avatar.
pmiPersonal meeting number of alternative host.

Definition at line 24 of file AlternativeHost.java.

24 {
25 this.email = email;
26 this.firstName = firstName;
27 this.lastName = lastName;
28 this.picUrl = picUrl;
29 this.pmi = pmi;
30 }

References us.zoom.sdk.AlternativeHost.email, us.zoom.sdk.AlternativeHost.firstName, us.zoom.sdk.AlternativeHost.lastName, us.zoom.sdk.AlternativeHost.picUrl, and us.zoom.sdk.AlternativeHost.pmi.

◆ AlternativeHost() [3/3]

us.zoom.sdk.AlternativeHost.AlternativeHost ( String email)
inline

Alternative host's information.

Parameters
emailThe email box of alternative host.

Definition at line 36 of file AlternativeHost.java.

37 {
38 this.email=email;
39 }

References us.zoom.sdk.AlternativeHost.email.

Member Function Documentation

◆ getEmail()

String us.zoom.sdk.AlternativeHost.getEmail ( )
inline

Get email box of alternative host.

Returns
The email of alternative host.

Definition at line 45 of file AlternativeHost.java.

45 {
46 return email;
47 }

References us.zoom.sdk.AlternativeHost.email.

◆ getFirstName()

String us.zoom.sdk.AlternativeHost.getFirstName ( )
inline

Get first name of alternative host.

Returns
The first name of alternative host.

Definition at line 61 of file AlternativeHost.java.

61 {
62 return firstName;
63 }

References us.zoom.sdk.AlternativeHost.firstName.

◆ getLastName()

String us.zoom.sdk.AlternativeHost.getLastName ( )
inline

Get last name of alternative host.

Returns
The last name of alternative host.

Definition at line 77 of file AlternativeHost.java.

77 {
78 return lastName;
79 }

References us.zoom.sdk.AlternativeHost.lastName.

◆ getPicUrl()

String us.zoom.sdk.AlternativeHost.getPicUrl ( )
inline

Get the avatar link of alternative host.

Returns
The avatar link of alternative host.

Definition at line 93 of file AlternativeHost.java.

93 {
94 return picUrl;
95 }

References us.zoom.sdk.AlternativeHost.picUrl.

◆ getPmi()

long us.zoom.sdk.AlternativeHost.getPmi ( )
inline

Get the personal meeting number of alternative host.

Returns
personal meeting number

Definition at line 109 of file AlternativeHost.java.

109 {
110 return pmi;
111 }

References us.zoom.sdk.AlternativeHost.pmi.

◆ setEmail()

void us.zoom.sdk.AlternativeHost.setEmail ( String email)
inline

Set email box of alternative host.

Parameters
emailThe email of alternative host.

Definition at line 53 of file AlternativeHost.java.

53 {
54 this.email = email;
55 }

References us.zoom.sdk.AlternativeHost.email.

◆ setFirstName()

void us.zoom.sdk.AlternativeHost.setFirstName ( String firstName)
inline

Set the first name of alternative host.

Parameters
firstNameThe first name of alternative host.

Definition at line 69 of file AlternativeHost.java.

69 {
70 this.firstName = firstName;
71 }

References us.zoom.sdk.AlternativeHost.firstName.

◆ setLastName()

void us.zoom.sdk.AlternativeHost.setLastName ( String lastName)
inline

Set the last name of alternative host.

Parameters
lastNameThe last name of alternative host.

Definition at line 85 of file AlternativeHost.java.

85 {
86 this.lastName = lastName;
87 }

References us.zoom.sdk.AlternativeHost.lastName.

◆ setPicUrl()

void us.zoom.sdk.AlternativeHost.setPicUrl ( String picUrl)
inline

Set the avatar link of alternative host.

Parameters
picUrlThe avatar link of alternative host.

Definition at line 101 of file AlternativeHost.java.

101 {
102 this.picUrl = picUrl;
103 }

References us.zoom.sdk.AlternativeHost.picUrl.

◆ setPmi()

void us.zoom.sdk.AlternativeHost.setPmi ( long pmi)
inline

Set the personal meeting number of alternative host.

Parameters
pmiPersonal meeting number.

Definition at line 117 of file AlternativeHost.java.

117 {
118 this.pmi = pmi;
119 }

References us.zoom.sdk.AlternativeHost.pmi.

Field Documentation

◆ email

◆ firstName

String us.zoom.sdk.AlternativeHost.firstName
private

◆ lastName

String us.zoom.sdk.AlternativeHost.lastName
private

◆ picUrl

String us.zoom.sdk.AlternativeHost.picUrl
private

◆ pmi

long us.zoom.sdk.AlternativeHost.pmi
private