Class: Google::Apis::AnalyticsV3::McfData::Row
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsV3::McfData::Row
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analytics_v3/classes.rb,
generated/google/apis/analytics_v3/representations.rb,
generated/google/apis/analytics_v3/representations.rb
Overview
A union object representing a dimension or metric value. Only one of " primitiveValue" or "conversionPathValue" attribute will be populated.
Defined Under Namespace
Classes: ConversionPathValue
Instance Attribute Summary collapse
-
#conversion_path_value ⇒ Array<Google::Apis::AnalyticsV3::McfData::Row::ConversionPathValue>
A conversion path dimension value, containing a list of interactions with their attributes.
-
#primitive_value ⇒ String
A primitive dimension value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Row
constructor
A new instance of Row.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Row
Returns a new instance of Row
3827 3828 3829 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3827 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversion_path_value ⇒ Array<Google::Apis::AnalyticsV3::McfData::Row::ConversionPathValue>
A conversion path dimension value, containing a list of interactions with
their attributes.
Corresponds to the JSON property conversionPathValue
3820 3821 3822 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3820 def conversion_path_value @conversion_path_value end |
#primitive_value ⇒ String
A primitive dimension value. A primitive metric value.
Corresponds to the JSON property primitiveValue
3825 3826 3827 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3825 def primitive_value @primitive_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3832 3833 3834 3835 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3832 def update!(**args) @conversion_path_value = args[:conversion_path_value] if args.key?(:conversion_path_value) @primitive_value = args[:primitive_value] if args.key?(:primitive_value) end |