import * as $dara from '@darabonba/typescript'; import { Sandbox } from "./Sandbox"; export declare class SandboxResult extends $dara.Model { /** * @remarks * SUCCESS indicates success. In case of failure, the corresponding Error Type is returned. * * @example * SUCCESS */ code?: string; /** * @remarks * Detailed information about the sandbox * * This parameter is required. */ data?: Sandbox; /** * @remarks * Unique request ID used for troubleshooting * * @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; }); }