// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ImportImageResponseBody extends $dara.Model { /** * @remarks * The image ID. * * @example * m-bp67acfmxazb4p**** */ imageId?: string; /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The request ID. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3**** */ requestId?: string; /** * @remarks * The image import task ID. * * @example * t-bp67acfmxazb4p**** */ taskId?: string; static names(): { [key: string]: string } { return { imageId: 'ImageId', regionId: 'RegionId', requestId: 'RequestId', taskId: 'TaskId', }; } static types(): { [key: string]: any } { return { imageId: 'string', regionId: 'string', requestId: 'string', taskId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }