Vairified TypeScript SDK - v0.3.1
    Preparing search index...

    Interface TokenResponse

    Response from exchanging an authorization code for tokens.

    interface TokenResponse {
        accessToken: string;
        refreshToken: string | null;
        expiresIn: number;
        scope: readonly string[];
        playerId: string;
    }
    Index

    Properties

    accessToken: string
    refreshToken: string | null
    expiresIn: number
    scope: readonly string[]
    playerId: string