FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
webex-java-sdk/src/main/java/com/ciscospark/Person.java at master · MytiLab/webex-java-sdk · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
MytiLab
/
webex-java-sdk
Public
forked from
webex/webex-java-sdk
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
webex-java-sdk
/
src
/
main
/
java
/
com
/
ciscospark
/
Person.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
181 lines (140 loc) · 3.58 KB
Breadcrumbs
webex-java-sdk
/
src
/
main
/
java
/
com
/
ciscospark
/
Person.java
Copy path
File metadata and controls
181 lines (140 loc) · 3.58 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
package
com
.
ciscospark
;
import
java
.
util
.
Date
;
/**
* Copyright (c) 2015 Cisco Systems, Inc. See LICENSE file.
*/
public
class
Person
{
private
String
id
;
private
String
displayName
;
private
String
[]
emails
;
private
String
firstName
;
private
String
lastName
;
private
String
avatar
;
private
String
orgId
;
private
String
[]
roles
;
private
String
[]
licenses
;
private
Date
created
;
private
String
timeZone
;
private
Date
lastActivity
;
private
String
status
;
private
String
type
;
private
PhoneNumber
[]
phoneNumbers
;
private
Boolean
loginEnabled
;
private
Date
lastModified
;
private
String
nickName
;
private
Boolean
invitePending
;
public
String
getId
() {
return
id
;
}
public
void
setId
(
String
id
) {
this
.
id
=
id
;
}
public
String
getDisplayName
() {
return
displayName
;
}
public
void
setDisplayName
(
String
displayName
) {
this
.
displayName
=
displayName
;
}
public
String
[]
getEmails
() {
return
emails
;
}
public
void
setEmails
(
String
[]
emails
) {
this
.
emails
=
emails
;
}
public
String
getFirstName
() {
return
firstName
;
}
public
void
setFirstName
(
String
firstName
) {
this
.
firstName
=
firstName
;
}
public
String
getLastName
() {
return
lastName
;
}
public
void
setLastName
(
String
lastName
) {
this
.
lastName
=
lastName
;
}
public
String
getAvatar
() {
return
avatar
;
}
public
void
setAvatar
(
String
avatar
) {
this
.
avatar
=
avatar
;
}
public
String
getOrgId
() {
return
orgId
;
}
public
void
setOrgId
(
String
orgId
) {
this
.
orgId
=
orgId
;
}
public
String
[]
getRoles
() {
return
roles
;
}
public
void
setRoles
(
String
[]
roles
) {
this
.
roles
=
roles
;
}
public
String
[]
getLicenses
() {
return
licenses
;
}
public
void
setLicenses
(
String
[]
licenses
) {
this
.
licenses
=
licenses
;
}
public
Date
getCreated
() {
return
created
;
}
public
void
setCreated
(
Date
created
) {
this
.
created
=
created
;
}
public
String
getTimeZone
() {
return
timeZone
;
}
public
void
setTimeZone
(
String
timeZone
) {
this
.
timeZone
=
timeZone
;
}
public
Date
getLastActivity
() {
return
lastActivity
;
}
public
void
setLastActivity
(
Date
lastActivity
) {
this
.
lastActivity
=
lastActivity
;
}
public
String
getStatus
() {
return
status
;
}
public
void
setStatus
(
String
status
) {
this
.
status
=
status
;
}
public
String
getType
() {
return
type
;
}
public
void
setType
(
String
type
) {
this
.
type
=
type
;
}
public
void
setPhoneNumbers
(
PhoneNumber
[]
phoneNumbers
) {
this
.
phoneNumbers
=
phoneNumbers
;
}
public
PhoneNumber
[]
getPhoneNumbers
() {
return
this
.
phoneNumbers
;
}
public
Boolean
getLoginEnabled
() {
return
loginEnabled
;
}
public
void
setLoginEnabled
(
Boolean
loginEnabled
) {
this
.
loginEnabled
=
loginEnabled
;
}
public
Date
getLastModified
() {
return
lastModified
;
}
public
void
setLastModified
(
Date
lastModified
) {
this
.
lastModified
=
lastModified
;
}
public
String
getNickName
() {
return
nickName
;
}
public
void
setNickName
(
String
nickName
) {
this
.
nickName
=
nickName
;
}
public
Boolean
getInvitePending
() {
return
invitePending
;
}
public
void
setInvitePending
(
Boolean
invitePending
) {
this
.
invitePending
=
invitePending
;
}
}
Back
|
FazBrowse Home
|
New Git URL