// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class UpdateTimingSyntheticTaskResponseBodyData extends $dara.Model { /** * @remarks * The task ID. * * @example * 1eeb351722c84e05b52c82fd0dc9953e */ taskId?: string; static names(): { [key: string]: string } { return { taskId: 'TaskId', }; } static types(): { [key: string]: any } { return { taskId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export 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 } { return { code: 'Code', data: 'Data', message: 'Message', requestId: 'RequestId', success: 'Success', }; } static types(): { [key: string]: any } { return { code: 'number', data: UpdateTimingSyntheticTaskResponseBodyData, message: 'string', requestId: 'string', success: 'boolean', }; } validate() { if(this.data && typeof (this.data as any).validate === 'function') { (this.data as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }