import * as $dara from '@darabonba/typescript'; import { GrafanaWorkspace } from "./GrafanaWorkspace"; export declare class ListGrafanaWorkspaceResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. The status code 200 indicates that the request was successful. * * @example * 200 */ code?: number; /** * @remarks * The returned result. */ data?: GrafanaWorkspace[]; /** * @remarks * The error message returned if the request parameters are invalid. * * @example * success */ message?: string; /** * @remarks * The request ID. * * @example * 0080BE65-167F-5CB6-A691-14E2EFD474BC */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: true and false. * * @example * True */ success?: boolean; /** * @remarks * The trace ID that is used to query the details of the request. * * @example * eac0a8048716731735000007137d000b */ traceId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }