import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PaymentLinkLineItem, PaymentLinkLineItem$Outbound } from "./paymentlinklineitem.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 PaymentLinkLineItems = { /** * The list of line items. */ items: Array; }; /** @internal */ export declare const PaymentLinkLineItems$inboundSchema: z.ZodType; /** @internal */ export type PaymentLinkLineItems$Outbound = { items: Array; }; /** @internal */ export declare const PaymentLinkLineItems$outboundSchema: z.ZodType; export declare function paymentLinkLineItemsToJSON(paymentLinkLineItems: PaymentLinkLineItems): string; export declare function paymentLinkLineItemsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentlinklineitems.d.ts.map