import * as z from "zod/v3"; export type ExpirePaymentLinkGlobals = { merchantAccountId?: string | undefined; }; export type ExpirePaymentLinkRequest = { /** * 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 ExpirePaymentLinkRequest$Outbound = { payment_link_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const ExpirePaymentLinkRequest$outboundSchema: z.ZodType; export declare function expirePaymentLinkRequestToJSON(expirePaymentLinkRequest: ExpirePaymentLinkRequest): string; //# sourceMappingURL=expirepaymentlink.d.ts.map