import * as z from "zod/v3"; import * as components from "../components/index.js"; import { MoovError } from "./mooverror.js"; export type ProductRequestValidationErrorData = { title?: string | undefined; description?: string | undefined; basePrice?: components.AmountDecimalValidationError | undefined; images?: { [k: string]: components.AssignProductImageValidationError; } | undefined; optionGroups?: { [k: string]: components.ProductOptionGroupValidationError; } | undefined; }; export declare class ProductRequestValidationError extends MoovError { title?: string | undefined; description?: string | undefined; basePrice?: components.AmountDecimalValidationError | undefined; images?: { [k: string]: components.AssignProductImageValidationError; } | undefined; optionGroups?: { [k: string]: components.ProductOptionGroupValidationError; } | undefined; /** The original data that was passed to this error instance. */ data$: ProductRequestValidationErrorData; constructor(err: ProductRequestValidationErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const ProductRequestValidationError$inboundSchema: z.ZodType; /** @internal */ export type ProductRequestValidationError$Outbound = { title?: string | undefined; description?: string | undefined; basePrice?: components.AmountDecimalValidationError$Outbound | undefined; images?: { [k: string]: components.AssignProductImageValidationError$Outbound; } | undefined; optionGroups?: { [k: string]: components.ProductOptionGroupValidationError$Outbound; } | undefined; }; /** @internal */ export declare const ProductRequestValidationError$outboundSchema: z.ZodType; //# sourceMappingURL=productrequestvalidationerror.d.ts.map