import * as z from "zod/v3"; import * as components from "../components/index.js"; export type AddPaymentLinkGlobals = { merchantAccountId?: string | undefined; }; export type AddPaymentLinkRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; paymentLinkCreate: components.PaymentLinkCreate; }; /** @internal */ export type AddPaymentLinkRequest$Outbound = { merchantAccountId?: string | null | undefined; PaymentLinkCreate: components.PaymentLinkCreate$Outbound; }; /** @internal */ export declare const AddPaymentLinkRequest$outboundSchema: z.ZodType; export declare function addPaymentLinkRequestToJSON(addPaymentLinkRequest: AddPaymentLinkRequest): string; //# sourceMappingURL=addpaymentlink.d.ts.map