// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ModifyDiskDeploymentResponseBody extends $dara.Model { /** * @remarks * The ID of the request. * * @example * D69846D9-F17F-51C0-8AC6-B4B71777**** */ requestId?: string; /** * @remarks * The ID of the disk migration task. * * @example * t-bp67acfmxazb4p**** */ taskId?: string; static names(): { [key: string]: string } { return { requestId: 'RequestId', taskId: 'TaskId', }; } static types(): { [key: string]: any } { return { requestId: 'string', taskId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }