Class: Google::Analytics::Data::V1beta::DimensionExpression::ConcatenateExpression
- Inherits:
-
Object
- Object
- Google::Analytics::Data::V1beta::DimensionExpression::ConcatenateExpression
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/analytics/data/v1beta/data.rb
Overview
Used to combine dimension values to a single dimension.
Instance Attribute Summary collapse
-
#delimiter ⇒ ::String
The delimiter placed between dimension names.
-
#dimension_names ⇒ ::Array<::String>
Names of dimensions.
Instance Attribute Details
#delimiter ⇒ ::String
Returns 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".
161 162 163 164 |
# File 'proto_docs/google/analytics/data/v1beta/data.rb', line 161 class ConcatenateExpression include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#dimension_names ⇒ ::Array<::String>
Returns Names of dimensions. The names must refer back to names in the dimensions field of the request.
161 162 163 164 |
# File 'proto_docs/google/analytics/data/v1beta/data.rb', line 161 class ConcatenateExpression include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |