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