AniLink - v2.0.0
    Preparing search index...

    Interface MalRefreshTokenRequest

    MalRefreshTokenRequest is the input for refreshMalAccessToken when refreshing a MAL access token.

    It carries the client identity and stored refresh token from a prior MalTokenResponse, plus optional RequestOptions for the token call.

    interface MalRefreshTokenRequest {
        clientId: string;
        clientSecret?: string;
        options?: RequestOptions;
        refreshToken: string;
    }
    Index
    clientId: string

    The MAL application client ID.

    clientSecret?: string

    An optional client secret for applications that use one.

    options?: RequestOptions

    Shared transport settings for the token request.

    refreshToken: string

    The stored MAL refresh token.