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, Expand)

Implemented by

Properties

expires: string

The date and time of token expiration.

hash: string

Token hash.

scope: string

Token scope.

token: string

Access token.

Methods

MMNEPVFCICPMFPCPTTAAATR