import * as $dara from '@darabonba/typescript'; import { GrafanaWorkspace } from "./GrafanaWorkspace"; export declare class CreateGrafanaWorkspaceResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. The status code 200 indicates that the request was successful. Other status codes indicate that the request failed. * * @example * 200 */ code?: number; /** * @remarks * The information about the Grafana workspace. */ data?: GrafanaWorkspace; /** * @remarks * The returned message. * * @example * success */ message?: string; /** * @remarks * The request ID. * * @example * D80ADAAC-8C32-5479-BD14-C28CF832**** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: * * * `true` * * `false` * * @example * true */ success?: boolean; /** * @remarks * The ID of the trace. * * @example * eac0a8048716731735000007137d000b */ traceId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }