Response for listing rate limit configurations

interface ListRateLimitResponse {
    data: RateLimitResponse[];
    hasMore?: boolean;
    nextPage?: string;
    object: "list";
}

Properties

The list of rate limit configurations

hasMore?: boolean

Whether there are more rate limit configurations to fetch

nextPage?: string

Token for fetching the next page of rate limit configurations

object: "list"

The object type, which is always "list"