import * as z from "zod/v3"; import * as components from "../components/index.js"; export type UpdatePaymentMethodGlobals = { merchantAccountId?: string | undefined; }; export type UpdatePaymentMethodRequest = { /** * The ID of the payment method */ paymentMethodId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; paymentMethodUpdate: components.PaymentMethodUpdate; }; /** @internal */ export type UpdatePaymentMethodRequest$Outbound = { payment_method_id: string; merchantAccountId?: string | null | undefined; PaymentMethodUpdate: components.PaymentMethodUpdate$Outbound; }; /** @internal */ export declare const UpdatePaymentMethodRequest$outboundSchema: z.ZodType; export declare function updatePaymentMethodRequestToJSON(updatePaymentMethodRequest: UpdatePaymentMethodRequest): string; //# sourceMappingURL=updatepaymentmethod.d.ts.map