Interface ApiResponse<T>

interface ApiResponse<T> {
    credits: ApiResponseCredits;
    data: T;
    throttling: null | ApiResponseThrottling;
}

Type Parameters

  • T

Properties

data: T
throttling: null | ApiResponseThrottling