@getalby/sdk
    Preparing search index...

    Interface Token

    interface Token {
        access_token?: string;
        expires_at?: number;
        refresh_token?: string;
        scope?: string;
        token_type?: string;
    }

    Hierarchy

    Index

    Properties

    access_token?: string

    Access tokens are the token that applications use to make API requests on behalf of a user.

    expires_at?: number

    Date that the access_token will expire at.

    refresh_token?: string

    Allows an application to obtain a new access token without prompting the user via the refresh token flow.

    scope?: string

    Comma-separated list of scopes for the token

    token_type?: string