import * as $dara from '@darabonba/typescript'; export declare class ListDispatchRuleResponseBodyDispatchRules extends $dara.Model { /** * @remarks * The name of the notification policy. * * @example * Prod */ name?: string; /** * @remarks * The ID of the notification policy. * * @example * 10282 */ ruleId?: number; /** * @remarks * Indicates whether the notification policy is enabled. Valid values: * * * `true` * * `false` * * @example * true */ state?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListDispatchRuleResponseBody extends $dara.Model { /** * @remarks * The returned struct. */ dispatchRules?: ListDispatchRuleResponseBodyDispatchRules[]; /** * @remarks * The request ID. * * @example * 34ED024E-9E31-434A-9E4E-D9D15C3**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }