import * as z from "zod/v3"; export type GetPaymentLinkGlobals = { merchantAccountId?: string | undefined; }; export type GetPaymentLinkRequest = { /** * The unique identifier for the payment link. */ paymentLinkId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetPaymentLinkRequest$Outbound = { payment_link_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetPaymentLinkRequest$outboundSchema: z.ZodType; export declare function getPaymentLinkRequestToJSON(getPaymentLinkRequest: GetPaymentLinkRequest): string; //# sourceMappingURL=getpaymentlink.d.ts.map