AI-generated Key Takeaways
- 
          A DimensionValue resource represents a specific value for a dimension, with fields for the dimension name, the value itself, and an optional ID. 
- 
          The matchTypefield determines how thevaluefield is used for filtering, with options like EXACT, BEGINS_WITH, CONTAINS, and WILDCARD_EXPRESSION.
- 
          The matchTypecan only be other than EXACT for paid search dimensions.
- 
          The resource also includes fields for kindandetagfor resource identification and caching.
Represents a DimensionValue resource.
| JSON representation | 
|---|
| {
  "dimensionName": string,
  "value": string,
  "id": string,
  "matchType": enum ( | 
| Fields | |
|---|---|
| dimensionName | 
 The name of the dimension. | 
| value | 
 The value of the dimension. | 
| id | 
 The ID associated with the value if available. | 
| 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 | 
 The kind of resource this is, in this case 
 . | 
| etag | 
 The eTag of this response for caching purposes. | 
MatchType
| Enums | |
|---|---|
| EXACT | |
| BEGINS_WITH | |
| CONTAINS | |
| WILDCARD_EXPRESSION | |