import * as $dara from '@darabonba/typescript'; import { WindowLimit } from "./WindowLimit"; export declare class CreateRateLimitRuleInput extends $dara.Model { /** * @remarks * The descriptor ID for the rate limit rule. This parameter is required if the descriptor type is not `model`. For `model` types, the server assembles the ID. * * @example * model:gpt-4 */ descriptorId?: string; /** * @remarks * The descriptor type for the rate limit rule, such as `model` or `user`. * * This parameter is required. * * @example * model */ descriptorType?: string; /** * @remarks * Whether to enable the rate limit rule. * * @example * true */ enabled?: boolean; /** * @remarks * A list of time window configurations. At least one window is required. * * This parameter is required. */ windows?: WindowLimit[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }