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