MonoCloud Authentication SDK
    Preparing search index...

    Represents the tokens obtained during authentication that are available in the session.

    interface MonoCloudTokens {
        accessToken: string;
        accessTokenExpiration: number;
        idToken?: string;
        isExpired: boolean;
        refreshToken?: string;
        requestedScopes?: string;
        resource?: string;
        scopes: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    accessToken: string

    The access token associated with the session.

    accessTokenExpiration: number

    The expiration timestamp of the access token (in epoch).

    idToken?: string

    The ID token obtained during authentication.

    isExpired: boolean

    Specifies if the access token has expired.

    refreshToken?: string

    The refresh token obtained during authentication.

    requestedScopes?: string

    Optional. The requested scopes.

    resource?: string

    Optional. The resource associated with the access token.

    scopes: string

    The scopes granted by the access token.