/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 8604b61a69a0 */ import * as z from "zod/v4"; export type StopAgentSessionGlobals = { /** * 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 StopAgentSessionRequest = { id: string; }; /** @internal */ export type StopAgentSessionRequest$Outbound = { id: string; }; /** @internal */ export const StopAgentSessionRequest$outboundSchema: z.ZodType< StopAgentSessionRequest$Outbound, StopAgentSessionRequest > = z.object({ id: z.string(), }); export function stopAgentSessionRequestToJSON( stopAgentSessionRequest: StopAgentSessionRequest, ): string { return JSON.stringify( StopAgentSessionRequest$outboundSchema.parse(stopAgentSessionRequest), ); }