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

StringFilter

import type { StringFilter } from "https://googleapis.deno.dev/v1/analyticsdata:v1beta.ts";

The filter for string

interface StringFilter {
caseSensitive?: boolean;
matchType?:
| "MATCH_TYPE_UNSPECIFIED"
| "EXACT"
| "BEGINS_WITH"
| "ENDS_WITH"
| "CONTAINS"
| "FULL_REGEXP"
| "PARTIAL_REGEXP";
value?: string;
}

§Properties

§
caseSensitive?: boolean
[src]

If true, the string value is case sensitive.

§
matchType?: "MATCH_TYPE_UNSPECIFIED" | "EXACT" | "BEGINS_WITH" | "ENDS_WITH" | "CONTAINS" | "FULL_REGEXP" | "PARTIAL_REGEXP"
[src]

The match type for this filter.

§
value?: string
[src]

The string value used for the matching.