import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PaymentLinkCustomerOptions = { /** * If true, a billing address is required when completing the payment form. */ requireAddress?: boolean | undefined; /** * If true, a phone number is required when completing the payment form. */ requirePhone?: boolean | undefined; /** * Optional free-form metadata for the Moov account that will represent this customer. */ metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const PaymentLinkCustomerOptions$inboundSchema: z.ZodType; /** @internal */ export type PaymentLinkCustomerOptions$Outbound = { requireAddress?: boolean | undefined; requirePhone?: boolean | undefined; metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const PaymentLinkCustomerOptions$outboundSchema: z.ZodType; export declare function paymentLinkCustomerOptionsToJSON(paymentLinkCustomerOptions: PaymentLinkCustomerOptions): string; export declare function paymentLinkCustomerOptionsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentlinkcustomeroptions.d.ts.map