-
- All Implemented Interfaces:
public final class Identity
Information about session Participant
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enum
Identity.Role
Session Participant role
-
Field Summary
Fields Modifier and Type Field Description private final Boolean
isHost
private final Identity.Role
role
private final String
name
private final String
company
private final Long
connectedAt
-
Constructor Summary
Constructors Constructor Description Identity(Identity.Role role, String name, String company, Long connectedAt)
-
Method Summary
Modifier and Type Method Description final Boolean
isHost()
final Identity.Role
getRole()
final String
getName()
final String
getCompany()
final Long
getConnectedAt()
-
-
Constructor Detail
-
Identity
Identity(Identity.Role role, String name, String company, Long connectedAt)
- Parameters:
role
-HOST or GUEST. For the most cases SDK client is a GUEST
name
-name provided in user profile
company
-company specified in user profile
connectedAt
-user connection Unix epoch timestamp
-
-
Method Detail
-
getRole
final Identity.Role getRole()
-
getCompany
final String getCompany()
-
getConnectedAt
final Long getConnectedAt()
-
-
-
-