import * as $dara from '@darabonba/typescript'; export declare class UpdateTimingSyntheticTaskResponseBodyData extends $dara.Model { /** * @remarks * The task ID. * * @example * 1eeb351722c84e05b52c82fd0dc9953e */ taskId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class UpdateTimingSyntheticTaskResponseBody extends $dara.Model { /** * @remarks * The status code. The status code 200 indicates that the request was successful. Other status codes indicate that the request failed. * * @example * 200 */ code?: number; /** * @remarks * The struct returned. */ data?: UpdateTimingSyntheticTaskResponseBodyData; /** * @remarks * The message returned. * * @example * success */ message?: string; /** * @remarks * The request ID. * * @example * F7781D4A-2818-41E7-B7BB-79D809E9**** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: * * * `true` * * `false` * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }