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

MetricFilterClause

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

Represents a group of metric filters. Set the operator value to specify how the filters are logically combined.

interface MetricFilterClause {
filters?: MetricFilter[];
operator?: "OPERATOR_UNSPECIFIED" | "OR" | "AND";
}

§Properties

§
filters?: MetricFilter[]
[src]

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 metric filters. If unspecified, it is treated as an OR.