// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ChangeResourceGroupInput extends $dara.Model { newResourceGroupId?: string; resourceId?: string; resourceType?: string; static names(): { [key: string]: string } { return { newResourceGroupId: 'newResourceGroupId', resourceId: 'resourceId', resourceType: 'resourceType', }; } static types(): { [key: string]: any } { return { newResourceGroupId: 'string', resourceId: 'string', resourceType: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }