<PackageReference Include="Relativity.Services.DataContracts.SDK" Version="13.6.2" />

CompositeCondition

public class CompositeCondition : Condition
A Composite Condition can be used to define AND and OR conditions that combine other Conditions together.
public Condition Condition1 { get; set; }

The first Condition.

public Condition Condition2 { get; set; }

The second Condition.

public bool HasPrecedence { get; set; }

The HasPrecedence flag

public CompositeConditionEnum Operator { get; set; }

The composition Operator (AND/OR)

Initializes a new instance of the CompositeCondition class.

Initializes a new instance of the CompositeCondition class.

Combine two Conditions together. Depending on the Condition precedence, right MAY BE MODIFIED during the call.