import { LookupValue } from './lookup-value'; export interface ColumnMetaData { CanFilter: boolean | null; CanSort: boolean | null; CaseSensitive: boolean | null; ClientFormat: null | string | null; ColumnName: null | string | null; ColumnType: null | string | null; DayColumn: null | string | null; DefaultWidth: number | null; DisplayName: null | string | null; ExcludeFromSummary: boolean | null; HasIgnoreYearColumns: boolean | null; HideFromUI: boolean | null; IsAnalyzed: boolean | null; IsKey: boolean | null; IsScriptColumn: boolean | null; LookupValues: null | Array | null; MonthColumn: null | string | null; RawColumnName: null | string | null; RequiredPermissions: null | Array | null; RequiredProducts: null | Array | null; ScriptFileName: null | string | null; ScriptReturnDataType: null | string | null; ServerFormat: null | string | null; TermAggregateSize: number | null; }