import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetThreeDsScenarioGlobals = { merchantAccountId?: string | undefined; }; export type GetThreeDsScenarioRequest = { /** * A pointer to the page of results to return. */ cursor?: string | null | undefined; /** * The maximum number of items that are at returned. */ limit?: number | undefined; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; export type GetThreeDsScenarioResponse = { result: components.ThreeDSecureScenarios; }; /** @internal */ export type GetThreeDsScenarioRequest$Outbound = { cursor?: string | null | undefined; limit: number; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetThreeDsScenarioRequest$outboundSchema: z.ZodType; export declare function getThreeDsScenarioRequestToJSON(getThreeDsScenarioRequest: GetThreeDsScenarioRequest): string; /** @internal */ export declare const GetThreeDsScenarioResponse$inboundSchema: z.ZodType; export declare function getThreeDsScenarioResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getthreedsscenario.d.ts.map