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
| 3799 3800 3801 | # File 'generated/google/apis/analytics_v3/classes.rb', line 3799 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
| 3792 3793 3794 | # File 'generated/google/apis/analytics_v3/classes.rb', line 3792 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
| 3797 3798 3799 | # File 'generated/google/apis/analytics_v3/classes.rb', line 3797 def primitive_value @primitive_value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3804 3805 3806 3807 | # File 'generated/google/apis/analytics_v3/classes.rb', line 3804 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 |