AlgorithmRulesRule
import type { AlgorithmRulesRule } from "https://googleapis.deno.dev/v1/displayvideo:v4.ts";
Set of conditions. The return value of the rule is either: * The return value for single met condition or * The defined default return value if no conditions are met.
interface AlgorithmRulesRule {
conditions?: AlgorithmRulesRuleCondition[];
defaultReturnValue?: AlgorithmRulesSignalValue;
}§Properties
§
conditions?: AlgorithmRulesRuleCondition[]
[src]List of conditions in this rule. The criteria among conditions should be mutually exclusive.
§
defaultReturnValue?: AlgorithmRulesSignalValue
[src]The default return value applied when none of the conditions are met.