-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSCIMEMUUser.java
More file actions
43 lines (30 loc) · 893 Bytes
/
SCIMEMUUser.java
File metadata and controls
43 lines (30 loc) · 893 Bytes
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
package org.kohsuke.github;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class SCIMEMUUser {
@JsonProperty("schemas")
public String[] schemas;
@JsonProperty("meta")
public SCIMMeta meta;
@JsonProperty("id")
public String id;
@JsonProperty("userName")
public String userName;
@JsonProperty("name")
public SCIMName name;
@JsonProperty("emails")
public List<SCIMEmail> emails;
@JsonProperty("externalId")
public String externalId;
@JsonProperty("active")
public Boolean active;
@JsonProperty("displayName")
public String displayName;
@JsonProperty("roles")
public List<SCIMRole> roles;
// Read only
@JsonProperty("groups")
public List<SCIMMember> groups;
}