import * as $dara from '@darabonba/typescript'; export declare class SwitchSyntheticTaskStatusRequest extends $dara.Model { /** * @remarks * Specifies whether to start or stop the task. Valid values: * * * **0**: stops the task * * **1**: starts the task * * @example * 0 */ switchStatus?: number; /** * @remarks * The task IDs. You can specify up to 30 task IDs at a time. */ taskIds?: number[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }