import * as $dara from '@darabonba/typescript'; import { Sandbox } from "./Sandbox"; export declare class StopSandboxResult extends $dara.Model { /** * @remarks * Result code * * @example * SUCCESS */ code?: string; /** * @remarks * Details of the code interpreter, including all configuration and status information of the interpreter */ data?: Sandbox; /** * @remarks * Request ID * * @example * F8A0F5F3-0C3E-4C82-9D4F-5E4B6A7C8D9E */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }