import * as z from "zod/v3"; export type MerchantProfileScheme = { /** * 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; }; /** @internal */ export type MerchantProfileScheme$Outbound = { merchant_acquirer_bin: string; merchant_acquirer_id: string; merchant_name: string; merchant_country_code: string; merchant_category_code: string; merchant_url: string; }; /** @internal */ export declare const MerchantProfileScheme$outboundSchema: z.ZodType; export declare function merchantProfileSchemeToJSON(merchantProfileScheme: MerchantProfileScheme): string; //# sourceMappingURL=merchantprofilescheme.d.ts.map