import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MemoryMount, MemoryMount$Outbound } from "./memorymount.js"; import { SandboxFeature } from "./sandboxfeature.js"; import { SandboxResourceClass } from "./sandboxresourceclass.js"; import { SandboxRuntimeProfile } from "./sandboxruntimeprofile.js"; import { SessionKind } from "./sessionkind.js"; export type CreateSessionRequest = { sessionId: string; sessionKey?: string | null | undefined; userId?: string | undefined; sessionKind?: SessionKind | undefined; resourceClass?: SandboxResourceClass | null | undefined; ttlSeconds?: number | undefined; sandboxFeatures?: Array | undefined; runtimeProfile?: SandboxRuntimeProfile | undefined; memoryMounts?: Array | undefined; queueIfFull?: boolean | undefined; skipLlmCredentialExchange?: boolean | undefined; }; /** @internal */ export declare const CreateSessionRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateSessionRequest$Outbound = { session_id: string; session_key?: string | null | undefined; user_id: string; session_kind?: string | undefined; resource_class?: string | null | undefined; ttl_seconds: number; sandbox_features?: Array | undefined; runtime_profile?: string | undefined; memory_mounts?: Array | undefined; queue_if_full: boolean; skip_llm_credential_exchange: boolean; }; /** @internal */ export declare const CreateSessionRequest$outboundSchema: z.ZodType; export declare function createSessionRequestToJSON(createSessionRequest: CreateSessionRequest): string; export declare function createSessionRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createsessionrequest.d.ts.map