// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ListTimingSyntheticTasksShrinkRequest extends $dara.Model { /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The ID of the resource group. * * @example * rg-acfmxyexli2**** */ resourceGroupId?: string; /** * @remarks * The search keyword. */ searchShrink?: string; /** * @remarks * The tags. */ tagsShrink?: string; static names(): { [key: string]: string } { return { regionId: 'RegionId', resourceGroupId: 'ResourceGroupId', searchShrink: 'Search', tagsShrink: 'Tags', }; } static types(): { [key: string]: any } { return { regionId: 'string', resourceGroupId: 'string', searchShrink: 'string', tagsShrink: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }