Interface QueryResponseWithRateLimit

Response from a query that includes rate limit information.

interface QueryResponseWithRateLimit {
    rateLimit: RateLimitInfo;
    response: QueryResponse;
}

Properties

Properties

rateLimit: RateLimitInfo

Rate limit information from response headers.

response: QueryResponse

The query response data.