import * as $dara from '@darabonba/typescript'; export declare class DeletePrometheusGlobalViewResponseBody extends $dara.Model { /** * @remarks * The status code. The status code 200 indicates a successful request, whereas others indicate a failed request. * * @example * 200 */ code?: number; /** * @remarks * The response parameters in the JSON format. * * @example * {"Success":true,"Msg":"OK"} */ data?: string; /** * @remarks * The supplemental message providing additional context about the response. * * @example * success */ message?: string; /** * @remarks * The request ID. You can use the ID to query logs and troubleshoot issues. * * @example * 337B8F7E-0A64-5768-9225-E9B3CF****** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }