Active session state
        
        
    Properties:
| Name | Type | Attributes | Description | 
|---|---|---|---|
| identity | string | <optional> | identity of a logged in user | 
| loginError | any | <optional> | last error that occurred when logging in | 
| loginState | SessionState.LoginState | <optional> | current state of the session | 
| ssoTokenPayload | SessionState.SSOTokenPayload | <optional> | SSO token payload | 
Members
    
        
        
"UNKNOWN"
|
"LOGGING_IN"
|
"LOGGED_IN"
|
"LOGGED_OUT"
|
"ERROR"
    
    
    
            
            # static exports.LoginState
    Login states
    Properties:
| Name | Type | Description | 
|---|---|---|
| Unknown | "UNKNOWN" | |
| LoggingIn | "LOGGING_IN" | |
| LoggedIn | "LOGGED_IN" | |
| LoggedOut | "LOGGED_OUT" | |
| Error | "ERROR" | 
Type Definitions
    
        
        
object
    
    
    
            
            # SSOTokenPayload
    SSO Token Payload
    Properties:
| Name | Type | Description | 
|---|---|---|
| identity | string | identity | 
| roles | Array.<string> | roles | 
| token | string | access token | 
| expiration | string | token expiration date |