Type Alias Condition

only one of compoundCondition or dataCondition should be set

type Condition = {
    compoundCondition?: CompoundCondition;
    dataCondition?: DataCondition;
    ownerId?: string;
    tenantId?: string;
    type: "compound" | "data";
}
Index

Properties

compoundCondition?: CompoundCondition

A condition made up of other conditions

dataCondition?: DataCondition
ownerId?: string
tenantId?: string
type: "compound" | "data"