import * as z from "zod/v3"; export type CompanyUpdateRequest = { /** * Name of company being connected. */ name?: string | undefined; /** * 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 CompanyUpdateRequest$Outbound = { name?: string | undefined; description?: string | undefined; tags?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const CompanyUpdateRequest$outboundSchema: z.ZodType; export declare function companyUpdateRequestToJSON(companyUpdateRequest: CompanyUpdateRequest): string; //# sourceMappingURL=companyupdaterequest.d.ts.map