AlgorithmRulesRuleCondition
import type { AlgorithmRulesRuleCondition } from "https://googleapis.deno.dev/v1/displayvideo:v4.ts";
Set of signal comparisons. Equivalent of an if
statement.
interface AlgorithmRulesRuleCondition {
returnValue?: AlgorithmRulesSignalValue;
signalComparisons?: AlgorithmRulesSignalComparison[];
}§Properties
§
returnValue?: AlgorithmRulesSignalValue
[src]The value returned if the signalComparisons
condition evaluates to
TRUE
.
§
signalComparisons?: AlgorithmRulesSignalComparison[]
[src]List of comparisons that build if
statement condition. The comparisons
are combined into a single condition with AND
logical operators.