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

PathReportDimensionValue

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

Represents a PathReportDimensionValue resource.

interface PathReportDimensionValue {
dimensionName?: string;
ids?: string[];
kind?: string;
matchType?:
| "EXACT"
| "BEGINS_WITH"
| "CONTAINS"
| "WILDCARD_EXPRESSION";
values?: string[];
}

§Properties

§
dimensionName?: string
[src]

The name of the dimension.

§
ids?: string[]
[src]

The possible ID's associated with the value if available.

§
kind?: string
[src]

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

§
matchType?: "EXACT" | "BEGINS_WITH" | "CONTAINS" | "WILDCARD_EXPRESSION"
[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.

§
values?: string[]
[src]

The possible values of the dimension.