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

NumericFilter

import type { NumericFilter } from "https://googleapis.deno.dev/v1/analyticsdata:v1beta.ts";

Filters for numeric or date values.

interface NumericFilter {
operation?:
| "OPERATION_UNSPECIFIED"
| "EQUAL"
| "LESS_THAN"
| "LESS_THAN_OR_EQUAL"
| "GREATER_THAN"
| "GREATER_THAN_OR_EQUAL";
value?: NumericValue;
}

§Properties

§
operation?: "OPERATION_UNSPECIFIED" | "EQUAL" | "LESS_THAN" | "LESS_THAN_OR_EQUAL" | "GREATER_THAN" | "GREATER_THAN_OR_EQUAL"
[src]

The operation type for this filter.

§

A numeric value or a date value.