PinnedDimension

A categorical dimension fixed to a certain value.

JSON representation
{
  "name": string,

  // Union field value can be only one of the following:
  "stringVal": string,
  "boolVal": boolean
  // End of list of possible types for union field value.
}
Fields
name

string

The name of the dimension for which we are fixing its value.

Union field value. Dimension value.

NOTE: The value type must match that in the data with the same dimension as name. value can be only one of the following:

stringVal

string

A string value. This can be used for dimensions, which have their value field set to stringVal.

boolVal

boolean

A bool value. This can be used for dimensions, which have their value field set to boolVal.