// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class OpenSnapshotServiceResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * C36234E8-4C67-5F6C-8C07-F51B2EE2C560 */ requestId?: string; static names(): { [key: string]: string } { return { requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }