Member Junction
    Preparing search index...

    Interface AuthTokenInfo

    Token information structure

    interface AuthTokenInfo {
        accessToken?: string;
        expiresAt?: Date;
        idToken?: string;
        refreshToken?: string;
        tokenType?: string;
    }
    Index

    Properties

    accessToken?: string

    OAuth access token for API calls

    expiresAt?: Date

    Token expiration time

    idToken?: string

    ID token containing user claims

    refreshToken?: string

    Refresh token for obtaining new access tokens

    tokenType?: string

    Token type (usually 'Bearer')