A data object representing the logged in/logged out state of the current session

interface SessionState {
    fingerprint: null | string;
    isLoggedIn: boolean;
    tenantId: null | string;
    userId: null | string;
}

Properties

fingerprint: null | string

The fingerprint for the device currently being used

isLoggedIn: boolean

Whether the current session is logged in.

tenantId: null | string

A tenant id, used for filtering results by a tenant selected on the session level. In nodeblocks, this is commonly a organization id.

userId: null | string

The userId currently logged in as, or null if not logged in.

Generated using TypeDoc