DimensionValue

  • DimensionValue resource represents a dimension and its value, including an ID, match type, and kind.

  • matchType determines how the 'value' is matched during filtering and defaults to EXACT if unspecified.

  • Only paid search dimensions allow a matchType other than EXACT, with WILDCARD_EXPRESSION supporting placeholders and escaping.

  • The resource includes an etag for caching and a kind field identifying it as a dfareporting#dimensionValue.

Represents a DimensionValue resource.

JSON representation
{
  "dimensionName": string,
  "value": string,
  "id": string,
  "matchType": enum (MatchType),
  "kind": string,
  "etag": string
}
Fields
dimensionName

string

The name of the dimension.

value

string

The value of the dimension.

id

string

The ID associated with the value if available.

matchType

enum (MatchType)

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.

kind

string

The kind of resource this is, in this case

dfareporting#dimensionValue

.

etag

string

The eTag of this response for caching purposes.

MatchType

Enums
EXACT
BEGINS_WITH
CONTAINS
WILDCARD_EXPRESSION