/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type PatternsGetRequest = { patternId: string; agentWallet?: string | undefined; }; /** @internal */ export type PatternsGetRequest$Outbound = { patternId: string; agentWallet?: string | undefined; }; /** @internal */ export const PatternsGetRequest$outboundSchema: z.ZodMiniType< PatternsGetRequest$Outbound, PatternsGetRequest > = z.object({ patternId: z.string(), agentWallet: z.optional(z.string()), }); export function patternsGetRequestToJSON( patternsGetRequest: PatternsGetRequest, ): string { return JSON.stringify( PatternsGetRequest$outboundSchema.parse(patternsGetRequest), ); }