import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A structured industry taxonomy entry with category and mapped to a default MCC code. */ export type IndustryTaxonomy = { /** * Classification identifier for the industry. */ industry: string; /** * Display name of the industry */ displayName: string; /** * Category slug */ category: string; /** * Human-readable category label */ categoryDisplayName: string; /** * Default Merchant Category Code */ defaultMcc: string; }; /** @internal */ export declare const IndustryTaxonomy$inboundSchema: z.ZodType; /** @internal */ export type IndustryTaxonomy$Outbound = { industry: string; displayName: string; category: string; categoryDisplayName: string; defaultMcc: string; }; /** @internal */ export declare const IndustryTaxonomy$outboundSchema: z.ZodType; export declare function industryTaxonomyToJSON(industryTaxonomy: IndustryTaxonomy): string; export declare function industryTaxonomyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=industrytaxonomy.d.ts.map