import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type MerchantProfileSchemeSummary = { /** * Acquirer BIN to use when calling 3DS through this scheme. */ merchantAcquirerBin: string; /** * Merchant ID to use when calling 3DS through this scheme. */ merchantAcquirerId: string; merchantName: string; /** * The merchant's ISO 3166-1 numeric country code. */ merchantCountryCode: string; /** * Merchant category code to use when calling 3DS through this scheme. */ merchantCategoryCode: string; /** * URL to send when calling 3DS through this scheme. */ merchantUrl: string; /** * The date and time when this profile was first created in our system. */ createdAt: Date; }; /** @internal */ export declare const MerchantProfileSchemeSummary$inboundSchema: z.ZodType; export declare function merchantProfileSchemeSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=merchantprofileschemesummary.d.ts.map