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

PathFilter

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

Represents a DfaReporting path filter.

interface PathFilter {
eventFilters?: EventFilter[];
kind?: string;
pathMatchPosition?:
| "PATH_MATCH_POSITION_UNSPECIFIED"
| "ANY"
| "FIRST"
| "LAST";
}

§Properties

§
eventFilters?: EventFilter[]
[src]

Event filters in path report.

§
kind?: string
[src]

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

§
pathMatchPosition?: "PATH_MATCH_POSITION_UNSPECIFIED" | "ANY" | "FIRST" | "LAST"
[src]

Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch') allow a matchType other than EXACT.