import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AmountDecimalValidationError, AmountDecimalValidationError$Outbound } from "./amountdecimalvalidationerror.js"; import { CreatePaymentLinkLineItemOptionValidationError, CreatePaymentLinkLineItemOptionValidationError$Outbound } from "./createpaymentlinklineitemoptionvalidationerror.js"; export type CreatePaymentLinkLineItemValidationError = { productID?: string | undefined; name?: string | undefined; basePrice?: AmountDecimalValidationError | undefined; options?: { [k: string]: CreatePaymentLinkLineItemOptionValidationError; } | undefined; quantity?: string | undefined; }; /** @internal */ export declare const CreatePaymentLinkLineItemValidationError$inboundSchema: z.ZodType; /** @internal */ export type CreatePaymentLinkLineItemValidationError$Outbound = { productID?: string | undefined; name?: string | undefined; basePrice?: AmountDecimalValidationError$Outbound | undefined; options?: { [k: string]: CreatePaymentLinkLineItemOptionValidationError$Outbound; } | undefined; quantity?: string | undefined; }; /** @internal */ export declare const CreatePaymentLinkLineItemValidationError$outboundSchema: z.ZodType; export declare function createPaymentLinkLineItemValidationErrorToJSON(createPaymentLinkLineItemValidationError: CreatePaymentLinkLineItemValidationError): string; export declare function createPaymentLinkLineItemValidationErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createpaymentlinklineitemvalidationerror.d.ts.map