/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: f0f70593f284 */ import * as z from "zod/v4"; import { remap as remap$ } from "../../lib/primitives.js"; export type GetWorkflowExecutionTraceInfoRequest = { executionId: string; }; /** @internal */ export type GetWorkflowExecutionTraceInfoRequest$Outbound = { execution_id: string; }; /** @internal */ export const GetWorkflowExecutionTraceInfoRequest$outboundSchema: z.ZodType< GetWorkflowExecutionTraceInfoRequest$Outbound, GetWorkflowExecutionTraceInfoRequest > = z.object({ executionId: z.string(), }).transform((v) => { return remap$(v, { executionId: "execution_id", }); }); export function getWorkflowExecutionTraceInfoRequestToJSON( getWorkflowExecutionTraceInfoRequest: GetWorkflowExecutionTraceInfoRequest, ): string { return JSON.stringify( GetWorkflowExecutionTraceInfoRequest$outboundSchema.parse( getWorkflowExecutionTraceInfoRequest, ), ); }