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

DimensionValue

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

Represents a DimensionValue resource.

interface DimensionValue {
dimensionName?: string;
etag?: string;
id?: string;
kind?: string;
matchType?:
| "EXACT"
| "BEGINS_WITH"
| "CONTAINS"
| "WILDCARD_EXPRESSION";
value?: string;
}

§Properties

§
dimensionName?: string
[src]

The name of the dimension.

§
etag?: string
[src]

The eTag of this response for caching purposes.

§
id?: string
[src]

The ID associated with the value if available.

§
kind?: string
[src]

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

§
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.

§
value?: string
[src]

The value of the dimension.