import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IssuingMerchantData = { /** * External identifier used to identify the merchant with the card brand. */ networkID: string; /** * Name of the merchant. */ name?: string | undefined; /** * The merchant's location. */ city?: string | undefined; /** * Two-letter country code. */ country: string; /** * The merchant's five-digit postal code. */ postalCode?: string | undefined; /** * The merchant's two-letter state abbreviation. */ state?: string | undefined; /** * The Merchant Category Code. */ mcc: string; }; /** @internal */ export declare const IssuingMerchantData$inboundSchema: z.ZodType; /** @internal */ export type IssuingMerchantData$Outbound = { networkID: string; name?: string | undefined; city?: string | undefined; country: string; postalCode?: string | undefined; state?: string | undefined; mcc: string; }; /** @internal */ export declare const IssuingMerchantData$outboundSchema: z.ZodType; export declare function issuingMerchantDataToJSON(issuingMerchantData: IssuingMerchantData): string; export declare function issuingMerchantDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=issuingmerchantdata.d.ts.map