Represents a hierarchy of SubscritionFilterClauses that have been grouped together through either adding a group in the WebUI or using parethesis in the Subscription condition string

interface ExpressionFilterGroup {
    end?: number;
    level?: number;
    start?: number;
}

Properties

Properties

end?: number

The index of the last FilterClause in this group

level?: number

Level of the group, since groups can be nested for each nested group the level will increase by 1

start?: number

The index of the first FilterClause in this group