sense-js-sdk
    Preparing search index...

    Interface Session

    Represents an authenticated user session. This is the object that must be persisted by the application in order to maintain the user's authentication state. This object contains sensitive information that should not be exposed to untrusted parties. It is recommended to store this object securely and only share it with trusted parties.

    interface Session {
        accessToken: string;
        emailAddress: string;
        monitorIds: number[];
        refreshToken: string;
        userId: number;
    }
    Index

    Properties

    accessToken: string
    emailAddress: string
    monitorIds: number[]
    refreshToken: string
    userId: number