export type api_CreateCompanyInput = { /** * CustomFields holds custom field values keyed by custom field key. */ customFields?: any; /** * FallbackColor is the hex color used as the icon background when no image is set. */ fallbackColor?: string; /** * IconImageUrl is the URL of the company's icon image. */ iconImageUrl?: string; /** * IsPlaceholder marks the company as a placeholder record. */ isPlaceholder?: boolean; /** * Name is the company's display name. */ name: string; };