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