/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type Security = { token: string; }; /** @internal */ export type Security$Outbound = { token: string; }; /** @internal */ export const Security$outboundSchema: z.ZodType< Security$Outbound, z.ZodTypeDef, Security > = z.object({ token: z.string(), }); export function securityToJSON(security: Security): string { return JSON.stringify(Security$outboundSchema.parse(security)); }