// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class OpenVClusterResponseBody extends $dara.Model { /** * @remarks * The cluster ID. * * @example * rre59xelcx */ data?: string; /** * @remarks * The request ID. You can use the ID to query logs and troubleshoot issues. * * @example * 42E58E4D-ACAD-4400-8FAF-F762340AE5B3 */ requestId?: string; static names(): { [key: string]: string } { return { data: 'Data', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { data: 'string', requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }