import type { constants_ApiObject } from './constants_ApiObject'; export type api_CompanyItem = { /** * Created is the RFC 3339 timestamp at which the object was created. */ createdAt?: string; /** * CustomFields holds custom field values for the company, keyed by custom field key. */ customFields?: any; /** * Deleted is true when the object has been deleted; present only on delete responses. */ deleted?: boolean; /** * FallbackColor is the hex color (e.g. "#4F46E5") used as the background when no * icon image is set. The native pattern documents intent; the constraint is * re-applied to the spec by the enrich-openapi post-processing step. */ fallbackColor?: string; /** * AvatarImageURL is the URL of the company's icon image. */ iconImageUrl?: string; /** * ID is the unique identifier of the object. */ id?: string; /** * IsPlaceholder is true when the company was auto-created as a placeholder. Read-only. */ isPlaceholder?: boolean; /** * Name is the company's display name. Required on create. */ name: string; /** * Object is the type of the object (e.g. "client", "company"). */ object?: constants_ApiObject; /** * Updated is the RFC 3339 timestamp at which the object was last updated. */ updatedAt?: string; };