import * as z from "zod/v3"; export type DeletePaymentMethodPaymentServiceTokenGlobals = { merchantAccountId?: string | undefined; }; export type DeletePaymentMethodPaymentServiceTokenRequest = { /** * The ID of the payment method */ paymentMethodId: string; /** * The ID of the payment service token */ paymentServiceTokenId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type DeletePaymentMethodPaymentServiceTokenRequest$Outbound = { payment_method_id: string; payment_service_token_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const DeletePaymentMethodPaymentServiceTokenRequest$outboundSchema: z.ZodType; export declare function deletePaymentMethodPaymentServiceTokenRequestToJSON(deletePaymentMethodPaymentServiceTokenRequest: DeletePaymentMethodPaymentServiceTokenRequest): string; //# sourceMappingURL=deletepaymentmethodpaymentservicetoken.d.ts.map