Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
AlternativeHost.java
Go to the documentation of this file.
1package us.zoom.sdk;
5public class AlternativeHost {
6 private String email;
7 private String firstName;
8 private String lastName;
9 private String picUrl;
10 private long pmi;
11
12 public AlternativeHost() {
13
14 }
15
24 public AlternativeHost(String email, String firstName, String lastName, String picUrl, long pmi) {
25 this.email = email;
26 this.firstName = firstName;
27 this.lastName = lastName;
28 this.picUrl = picUrl;
29 this.pmi = pmi;
30 }
31
36 public AlternativeHost(String email)
37 {
38 this.email=email;
39 }
40
45 public String getEmail() {
46 return email;
47 }
48
53 public void setEmail(String email) {
54 this.email = email;
55 }
56
61 public String getFirstName() {
62 return firstName;
63 }
64
69 public void setFirstName(String firstName) {
70 this.firstName = firstName;
71 }
72
77 public String getLastName() {
78 return lastName;
79 }
80
85 public void setLastName(String lastName) {
86 this.lastName = lastName;
87 }
88
93 public String getPicUrl() {
94 return picUrl;
95 }
96
101 public void setPicUrl(String picUrl) {
102 this.picUrl = picUrl;
103 }
104
109 public long getPmi() {
110 return pmi;
111 }
112
117 public void setPmi(long pmi) {
118 this.pmi = pmi;
119 }
120}
Alternative host user information.
AlternativeHost(String email)
Alternative host's information.
void setFirstName(String firstName)
AlternativeHost(String email, String firstName, String lastName, String picUrl, long pmi)
void setLastName(String lastName)