AlgorithmRulesRuleset
import type { AlgorithmRulesRuleset } from "https://googleapis.deno.dev/v1/displayvideo:v4.ts";
A ruleset consisting of a list of rules and how to aggregate the resulting values.
interface AlgorithmRulesRuleset {
aggregationType?:
| "RULE_AGGREGATION_TYPE_UNSPECIFIED"
| "SUM_OF_VALUES"
| "PRODUCT_OF_VALUES"
| "MAXIMUM_VALUE";
maxValue?: number;
rules?: AlgorithmRulesRule[];
}