Type Alias ConditionCreateRequest

only one of compoundCondition or dataCondition should be set

type ConditionCreateRequest = {
    compoundCondition?: CompoundCondition;
    dataCondition?: DataConditionCreateRequest;
    type: "compound" | "data";
}
Index

Properties

compoundCondition?: CompoundCondition

A condition made up of other conditions

A condition based on data within an app

type: "compound" | "data"

Indicates the condition type