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