import * as z from "zod/v3"; import * as components from "../components/index.js"; export type EditThreeDsConfigurationRequest = { /** * The ID of the merchant account. */ merchantAccountId: string; /** * The ID of the 3DS configuration for a merchant account. */ threeDsConfigurationId: string; merchantAccountThreeDSConfigurationUpdate: components.MerchantAccountThreeDSConfigurationUpdate; }; /** @internal */ export type EditThreeDsConfigurationRequest$Outbound = { merchant_account_id: string; three_ds_configuration_id: string; MerchantAccountThreeDSConfigurationUpdate: components.MerchantAccountThreeDSConfigurationUpdate$Outbound; }; /** @internal */ export declare const EditThreeDsConfigurationRequest$outboundSchema: z.ZodType; export declare function editThreeDsConfigurationRequestToJSON(editThreeDsConfigurationRequest: EditThreeDsConfigurationRequest): string; //# sourceMappingURL=editthreedsconfiguration.d.ts.map