Provider-specific rate limit configuration

interface RateLimitProvider {
    providerId: string;
    request?: RateLimitItem;
    token?: RateLimitItem;
    type: "provider";
}

Properties

providerId: string

The UUID of the provider this rate limit applies to

request?: RateLimitItem

Request rate limiting settings

Token rate limiting settings

type: "provider"

The type of rate limit, always "provider" for provider-specific rate limits

Example

provider;