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