import * as $dara from '@darabonba/typescript'; import { WindowLimit } from "./WindowLimit"; export declare class UpdateRateLimitRuleInput extends $dara.Model { /** * @remarks * Specifies whether to enable the rate limit rule. * * @example * false */ enabled?: boolean; /** * @remarks * A list of time window configurations. Providing this parameter replaces the entire existing list. */ windows?: WindowLimit[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }