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

DimensionFilterClause

import type { DimensionFilterClause } from "https://googleapis.deno.dev/v1/analyticsreporting:v4.ts";

A group of dimension filters. Set the operator value to specify how the filters are logically combined.

interface DimensionFilterClause {
filters?: DimensionFilter[];
operator?: "OPERATOR_UNSPECIFIED" | "OR" | "AND";
}

§Properties

§

The repeated set of filters. They are logically combined based on the operator specified.

§
operator?: "OPERATOR_UNSPECIFIED" | "OR" | "AND"
[src]

The operator for combining multiple dimension filters. If unspecified, it is treated as an OR.