import { DateOffsetPeriod } from './date-offset-period'; import { FilterClause } from './filter-clause'; import { RelationFilter } from './relation-filter'; /** * Represents a combined filter for querying data that consists of multiple child filters and an operator. */ export interface CombinedFilter { /** * The operator used to combine the child filters. */ Operator: 'AND' | 'OR' | 'NOT'; /** * An array of child filters that can be either simple filter clauses, relation filters, or other combined filters. */ ChildFilters: Array; }