Interface Indicator

interface Indicator {
    aggregator?: string;
    calendar?: string;
    code: string;
    dimensions?: string[];
    entity: string;
    filters?: ISlicer[];
    formula?: string;
    id: string;
    measure?: string;
    modelId?: string;
    name: string;
    type?: IndicatorType;
    unit?: string;
    visible?: boolean;
}

Properties

aggregator?: string

Aggregator function for measure or formula

calendar?: string

The calendar dimension or hierarchy

code: string

Business code

dimensions?: string[]

Free dimensions

entity: string

Cube

filters?: ISlicer[]

Slicer conditions

formula?: string

Formula for DERIVE type

id: string

System ID

measure?: string

Measure for BASIC type

modelId?: string

Semantic model id

name: string

Name

Type of indicator

unit?: string

Unit of measure or formula

visible?: boolean

Is visible

Generated using TypeDoc