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

ApiDimensionFilter

import type { ApiDimensionFilter } from "https://googleapis.deno.dev/v1/searchconsole:v1.ts";

A filter test to be applied to each row in the data set, where a match can return the row. Filters are string comparisons, and values and dimension names are not case-sensitive. Individual filters are either AND'ed or OR'ed within their parent filter group, according to the group's group type. You do not need to group by a specified dimension to filter against it.

interface ApiDimensionFilter {
dimension?:
| "QUERY"
| "PAGE"
| "COUNTRY"
| "DEVICE"
| "SEARCH_APPEARANCE";
expression?: string;
operator?:
| "EQUALS"
| "NOT_EQUALS"
| "CONTAINS"
| "NOT_CONTAINS"
| "INCLUDING_REGEX"
| "EXCLUDING_REGEX";
}

§Properties

§
dimension?: "QUERY" | "PAGE" | "COUNTRY" | "DEVICE" | "SEARCH_APPEARANCE"
[src]
§
expression?: string
[src]
§
operator?: "EQUALS" | "NOT_EQUALS" | "CONTAINS" | "NOT_CONTAINS" | "INCLUDING_REGEX" | "EXCLUDING_REGEX"
[src]