/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type ResponsesGetRequest = { responseId: string; }; /** @internal */ export type ResponsesGetRequest$Outbound = { responseId: string; }; /** @internal */ export const ResponsesGetRequest$outboundSchema: z.ZodMiniType< ResponsesGetRequest$Outbound, ResponsesGetRequest > = z.object({ responseId: z.string(), }); export function responsesGetRequestToJSON( responsesGetRequest: ResponsesGetRequest, ): string { return JSON.stringify( ResponsesGetRequest$outboundSchema.parse(responsesGetRequest), ); }