import * as z from "zod/v3"; export type GetPaymentMethodGlobals = { merchantAccountId?: string | undefined; }; export type GetPaymentMethodRequest = { /** * The ID of the payment method */ paymentMethodId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetPaymentMethodRequest$Outbound = { payment_method_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetPaymentMethodRequest$outboundSchema: z.ZodType; export declare function getPaymentMethodRequestToJSON(getPaymentMethodRequest: GetPaymentMethodRequest): string; //# sourceMappingURL=getpaymentmethod.d.ts.map