Member Junction
    Preparing search index...

    Interface OAuth2TokenResponse

    Standard OAuth2 token response

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

    Properties

    access_token: string
    expires_in?: number
    refresh_token?: string
    scope?: string
    token_type?: string