Skip to content
Snippets Groups Projects
config.model.ts 392 B
Newer Older
  • Learn to ignore specific revisions
  • import { FluidSlugType } from 'enums'
    
    export interface KonnectorConfig {
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
      name: string
    
      oauth: boolean
    
      slug: FluidSlugType
    
      cron?: string
    
      lastKnownCredentials?: string
    
      siteLink: string
    
    Yoan VALLET's avatar
    Yoan VALLET committed
      activation: string
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
    }
    
    
    export interface FluidConfig {
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
      fluidTypeId: number
      name: string
      coefficient: number
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
      dataDelayOffset: number
      konnectorConfig: KonnectorConfig
    }