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

A condition based on data within an app

ownerId?: string

UserID of the condition owner

tenantId?: string

The tenant id

type: "compound" | "data"

Indicates the condition type