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

UvarFilter

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

Defines the filtering on a single uvar.

interface UvarFilter {
complement?: boolean;
index?: bigint;
kind?: string;
match?: "UNSPECIFIED" | "EXACT" | "CONTAINS";
values?: string[];
}

§Properties

§
complement?: boolean
[src]

Return rows which don't match this filter.

§
index?: bigint
[src]

Custom variable index the filter is applied to.

§
kind?: string
[src]

The kind of resource this is, in this case dfareporting#uvarFilter.

§
match?: "UNSPECIFIED" | "EXACT" | "CONTAINS"
[src]

Indicates how the filter should be matched to the values.

§
values?: string[]
[src]

Values to filter on.