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

SegmentDimensionFilter

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

Dimension filter specifies the filtering options on a dimension.

interface SegmentDimensionFilter {
caseSensitive?: boolean;
dimensionName?: string;
expressions?: string[];
maxComparisonValue?: string;
minComparisonValue?: string;
operator?:
| "OPERATOR_UNSPECIFIED"
| "REGEXP"
| "BEGINS_WITH"
| "ENDS_WITH"
| "PARTIAL"
| "EXACT"
| "IN_LIST"
| "NUMERIC_LESS_THAN"
| "NUMERIC_GREATER_THAN"
| "NUMERIC_BETWEEN";
}

§Properties

§
caseSensitive?: boolean
[src]

Should the match be case sensitive, ignored for IN_LIST operator.

§
dimensionName?: string
[src]

Name of the dimension for which the filter is being applied.

§
expressions?: string[]
[src]

The list of expressions, only the first element is used for all operators

§
maxComparisonValue?: string
[src]

Maximum comparison values for BETWEEN match type.

§
minComparisonValue?: string
[src]

Minimum comparison values for BETWEEN match type.

§
operator?: "OPERATOR_UNSPECIFIED" | "REGEXP" | "BEGINS_WITH" | "ENDS_WITH" | "PARTIAL" | "EXACT" | "IN_LIST" | "NUMERIC_LESS_THAN" | "NUMERIC_GREATER_THAN" | "NUMERIC_BETWEEN"
[src]

The operator to use to match the dimension with the expressions.