import * as $dara from '@darabonba/typescript'; export declare class CreateSyntheticTaskResponseBodyData extends $dara.Model { /** * @remarks * The ID of the synthetic monitoring task. * * @example * 1234 */ taskId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateSyntheticTaskResponseBody extends $dara.Model { /** * @remarks * The status code returned. * * * 1001: The request was successful. * * 1002: The request failed. * * 1003: Parameter errors occurred. * * 1004: Authentication failed. * * 1006: The task does not exist. * * 1099: Internal errors occurred. * * @example * 1001 */ code?: string; /** * @remarks * The information about the synthetic monitoring task. */ data?: CreateSyntheticTaskResponseBodyData; /** * @remarks * The message that is returned when the task failed to be created. * * @example * null */ msg?: string; /** * @remarks * The ID of the request. * * @example * A5EC8221-08F2-4C95-9AF1-49FD998C**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }