EventDimension

Represents an event dimension.

JSON representation
{
  "name": string,

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

string

Dimension name.

NOTE: EventDimension names must be composed of alphanumeric characters only, and are case insensitive. Unicode characters are not supported. The underscore '_' is also allowed.

Union field value. Dimension value.

NOTE: All entries of the dimension name must have the same value type. value can be only one of the following:

stringVal

string

String representation.

NOTE: String values are case insensitive. Unicode characters are supported.

longVal

string (int64 format)

Long representation.

boolVal

boolean

Bool representation.

doubleVal

number

Double representation.