import * as z from "zod/v3"; export type CompanyRequestBody = { /** * Name of company being connected. */ name: string; /** * Additional information about the company. This can be used to store foreign IDs, references, etc. */ description?: string | undefined; /** * A collection of user-defined key-value pairs that store custom metadata against the company. */ tags?: { [k: string]: string; } | undefined; }; /** @internal */ export type CompanyRequestBody$Outbound = { name: string; description?: string | undefined; tags?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const CompanyRequestBody$outboundSchema: z.ZodType; export declare function companyRequestBodyToJSON(companyRequestBody: CompanyRequestBody): string; //# sourceMappingURL=companyrequestbody.d.ts.map