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