TESSA Web API
    Preparing search index...

    Interface IAccessTokenInfo

    An object containing information about access token.

    interface IAccessTokenInfo {
        expires: string;
        hash: string;
        scope: string;
        token: string;
        deserializeFromStorage(
            storage: IStorage,
            context?: StorageSerializableContext,
        ): this;
        serializeToStorage(
            storage?: IStorage,
            context?: StorageSerializableContext,
        ): IStorage;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    expires: string

    The date and time of token expiration.

    hash: string

    Token hash.

    scope: string

    Token scope.

    token: string

    Access token.

    Methods