import * as z from "zod/v3"; export type SuspendPaymentMethodNetworkTokenGlobals = { merchantAccountId?: string | undefined; }; export type SuspendPaymentMethodNetworkTokenRequest = { /** * The ID of the payment method */ paymentMethodId: string; /** * The ID of the network token */ networkTokenId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type SuspendPaymentMethodNetworkTokenRequest$Outbound = { payment_method_id: string; network_token_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const SuspendPaymentMethodNetworkTokenRequest$outboundSchema: z.ZodType; export declare function suspendPaymentMethodNetworkTokenRequestToJSON(suspendPaymentMethodNetworkTokenRequest: SuspendPaymentMethodNetworkTokenRequest): string; //# sourceMappingURL=suspendpaymentmethodnetworktoken.d.ts.map