class Google::Apis::AnalyticsdataV1alpha::ConcatenateExpression

Used to combine dimension values to a single dimension.

Attributes

delimiter[RW]

The delimiter placed between dimension names. Delimiters are often single characters such as “|” or “,” but can be longer strings. If a dimension value contains the delimiter, both will be present in response with no distinction. For example if dimension 1 value = “US,FR”, dimension 2 value = “JP”, and delimiter = “,”, then the response will contain “US,FR,JP”. Corresponds to the JSON property `delimiter` @return [String]

dimension_names[RW]

Names of dimensions. The names must refer back to names in the dimensions field of the request. Corresponds to the JSON property `dimensionNames` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsdata_v1alpha/classes.rb, line 347
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsdata_v1alpha/classes.rb, line 352
def update!(**args)
  @delimiter = args[:delimiter] if args.key?(:delimiter)
  @dimension_names = args[:dimension_names] if args.key?(:dimension_names)
end