// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CopySnapshotResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * C8B26B44-0189-443E-9816-D951F596**** */ requestId?: string; /** * @remarks * The ID of the new snapshot. * * @example * s-bp17441ohwka0yui**** */ snapshotId?: string; static names(): { [key: string]: string } { return { requestId: 'RequestId', snapshotId: 'SnapshotId', }; } static types(): { [key: string]: any } { return { requestId: 'string', snapshotId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }