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