/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 29bfba47ed95 */ import * as z from "zod/v4"; export type GetDebugSessionGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type GetDebugSessionRequest = { /** * Unique identifier for the debug session. */ id: string; }; /** @internal */ export type GetDebugSessionRequest$Outbound = { id: string; }; /** @internal */ export const GetDebugSessionRequest$outboundSchema: z.ZodType< GetDebugSessionRequest$Outbound, GetDebugSessionRequest > = z.object({ id: z.string(), }); export function getDebugSessionRequestToJSON( getDebugSessionRequest: GetDebugSessionRequest, ): string { return JSON.stringify( GetDebugSessionRequest$outboundSchema.parse(getDebugSessionRequest), ); }