import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TaxIDUpdateEin = { number?: string | undefined; }; /** * An EIN (employer identification number) for the business. For sole proprietors, an SSN can be used as the EIN. */ export type TaxIDUpdate = { ein?: TaxIDUpdateEin | undefined; }; /** @internal */ export declare const TaxIDUpdateEin$inboundSchema: z.ZodType; /** @internal */ export type TaxIDUpdateEin$Outbound = { number?: string | undefined; }; /** @internal */ export declare const TaxIDUpdateEin$outboundSchema: z.ZodType; export declare function taxIDUpdateEinToJSON(taxIDUpdateEin: TaxIDUpdateEin): string; export declare function taxIDUpdateEinFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TaxIDUpdate$inboundSchema: z.ZodType; /** @internal */ export type TaxIDUpdate$Outbound = { ein?: TaxIDUpdateEin$Outbound | undefined; }; /** @internal */ export declare const TaxIDUpdate$outboundSchema: z.ZodType; export declare function taxIDUpdateToJSON(taxIDUpdate: TaxIDUpdate): string; export declare function taxIDUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=taxidupdate.d.ts.map