// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class StartTimingSyntheticTaskRequest extends $dara.Model { /** * @remarks * The region ID. Default value: cn-hangzhou. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The task IDs. */ taskIds?: string[]; static names(): { [key: string]: string } { return { regionId: 'RegionId', taskIds: 'TaskIds', }; } static types(): { [key: string]: any } { return { regionId: 'string', taskIds: { 'type': 'array', 'itemType': 'string' }, }; } validate() { if(Array.isArray(this.taskIds)) { $dara.Model.validateArray(this.taskIds); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }