MonoCloud Authentication SDK
    Preparing search index...

    Represents a session containing user information, tokens, and additional custom properties.

    interface MonoCloudSession {
        accessTokens?: AccessToken[];
        authorizedScopes?: string;
        idToken?: string;
        refreshToken?: string;
        user: MonoCloudUser;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Additional custom properties that can be added to the session.

    Index

    Properties

    accessTokens?: AccessToken[]

    Optional. The access tokens associated with the session.

    authorizedScopes?: string
    idToken?: string

    Optional. The ID token associated with the session.

    refreshToken?: string

    Optional. The refresh token associated with the session.

    Information about the authenticated user, typically claims obtained from an ID token or the 'userinfo' endpoint.