/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 89389d5b7c74 */ import * as z from "zod/v4"; export type Security = { apiKey?: string | undefined; }; /** @internal */ export type Security$Outbound = { apiKey?: string | undefined; }; /** @internal */ export const Security$outboundSchema: z.ZodType = z .object({ apiKey: z.string().optional(), }); export function securityToJSON(security: Security): string { return JSON.stringify(Security$outboundSchema.parse(security)); }