Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AlgorithmRulesSignalComparison

import type { AlgorithmRulesSignalComparison } from "https://googleapis.deno.dev/v1/displayvideo:v3.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";
}

§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.

§

Value to compare signal to.

§

Signal to compare.