import { BaseModel } from './BaseModel'; export interface CompanyConfig extends BaseModel { /** * The URI to the trained Google Cloud Vision model deployed for the domain */ activityVisionModelUri: string; companyId: string; expiredProductCountConfig: number; powerBiEmbedUrl: string; /** * The client name registred by Involves */ involvesClient: string; /** * The model id used by Involves */ involvesModelId: number; useActivityVision: boolean; }