React Native Auth0 - v5.5.0
    Preparing search index...

    Type Alias ApiCredentials

    Represents API-specific credentials, primarily containing an access token. This is returned when requesting tokens for a specific API (audience).

    type ApiCredentials = {
        accessToken: string;
        tokenType: string;
        expiresAt: number;
        scope?: string;
    }

    Implemented by

    Index

    Properties

    accessToken: string
    tokenType: string
    expiresAt: number
    scope?: string