import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Information about the company from the underlying accounting software. */ export type CompanyInformation = { /** * Name of the linked company. */ companyName?: string | undefined; /** * Currency set in the accounting software of the linked company. */ baseCurrency?: string | undefined; /** * Accounting software subscription type such as Trial, Demo, Standard. */ planType?: string | null | undefined; /** * Boolean showing if the organisation has multicurrency enabled. */ multicurrencyEnabled?: boolean | undefined; /** * Array of enabled currencies for the linked company. */ currencies?: Array | null | undefined; }; /** @internal */ export declare const CompanyInformation$inboundSchema: z.ZodType; export declare function companyInformationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=companyinformation.d.ts.map