@nebius/js-sdk - v0.2.54
    Preparing search index...

    Contains the OAuth token endpoint result.

    access_token and refresh_token are secrets. Do not log this object.

    interface GetTokenResult {
        access_token: string;
        expires_in: number;
        refresh_token?: string;
        scope?: string;
        token_type: string;
    }
    Index
    access_token: string

    Access token returned by the federation endpoint.

    expires_in: number

    Number of seconds until the access token expires.

    refresh_token?: string

    Contains the refresh token.

    scope?: string

    Contains the scope.

    token_type: string

    OAuth token type, normally Bearer.