import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CreatePaymentLinkLineItem, CreatePaymentLinkLineItem$Outbound } from "./createpaymentlinklineitem.js"; /** * An optional collection of line items for a payment link. * * @remarks * When line items are provided, their total plus sales tax must equal the payment link amount. */ export type CreatePaymentLinkLineItemsUpdate = { /** * The list of line items. */ items?: Array | undefined; }; /** @internal */ export declare const CreatePaymentLinkLineItemsUpdate$inboundSchema: z.ZodType; /** @internal */ export type CreatePaymentLinkLineItemsUpdate$Outbound = { items?: Array | undefined; }; /** @internal */ export declare const CreatePaymentLinkLineItemsUpdate$outboundSchema: z.ZodType; export declare function createPaymentLinkLineItemsUpdateToJSON(createPaymentLinkLineItemsUpdate: CreatePaymentLinkLineItemsUpdate): string; export declare function createPaymentLinkLineItemsUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createpaymentlinklineitemsupdate.d.ts.map