@valon-technologies/gestalt
    Preparing search index...

    Interface TokenResponse

    RFC 6749 token endpoint response fields.

    interface TokenResponse {
        accessToken: string;
        tokenType: string;
        expiresIn: number | bigint;
        refreshToken?: string;
        scope?: string;
        grantId?: string;
    }
    Index

    Properties

    accessToken: string
    tokenType: string
    expiresIn: number | bigint
    refreshToken?: string
    scope?: string
    grantId?: string