Values.ExpressionDefines complex filtering conditions using logical operators (AND, OR, NOT) and various filter types.
type nonrec t = {or_ : Expressions.t option;A list of expressions to combine with OR logic.
*)and_ : Expressions.t option;A list of expressions to combine with AND logic.
*)not : Expression.t option;An expression to negate with NOT logic.
*)dimensions : DimensionValues.t option;The dimension values to include in the filter expression.
*)costCategories : CostCategoryValues.t option;The cost category values to include in the filter expression.
*)}val make :
?or_:Expressions.t ->
?and_:Expressions.t ->
?not:t ->
?dimensions:DimensionValues.t ->
?tags:TagValues.t ->
?costCategories:CostCategoryValues.t ->
unit ->
t