/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Response model for sandbox acquisition */ export interface CreateSandboxResponse { /** Unique identifier for the acquired sandbox */ sandbox_id: string; /** URL to connect to the MCP server */ server_url: string; /** The MCP server name */ server_name: Klavis.SandboxMcpServer; /** Current status of the sandbox */ status: Klavis.SandboxStatus; /** Status message */ message: string; }