AlgorithmRulesSignalComparison
import type { AlgorithmRulesSignalComparison } from "https://googleapis.deno.dev/v1/displayvideo:v4.ts";
A single comparison. The comparison compares the signal
to the
comparisonValue
. The comparison of siteId==123
is represented with the
following field values: * signal
has an impressionSignal
of SITE_ID
. *
comparisonOperator
is set to EQUAL
. * comparisonValue
is set to 123.
interface AlgorithmRulesSignalComparison {
comparisonOperator?:
| "COMPARISON_OPERATOR_UNSPECIFIED"
| "EQUAL"
| "GREATER_THAN"
| "LESS_THAN"
| "GREATER_THAN_OR_EQUAL_TO"
| "LESS_THAN_OR_EQUAL_TO";
comparisonValue?: AlgorithmRulesComparisonValue;
signal?: AlgorithmRulesSignal;
}§Properties
§
comparisonOperator?: "COMPARISON_OPERATOR_UNSPECIFIED" | "EQUAL" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL_TO" | "LESS_THAN_OR_EQUAL_TO"
[src]Operator used to compare the two values. In the resulting experession, the
signal
will be the first value and the `comparisonValue will be the
second.
§
comparisonValue?: AlgorithmRulesComparisonValue
[src]Value to compare signal to.
§
signal?: AlgorithmRulesSignal
[src]Signal to compare.