Class: Google::Apis::AnalyticsV3::McfData::Row::ConversionPathValue
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AnalyticsV3::McfData::Row::ConversionPathValue
 
- 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
Instance Attribute Summary collapse
- 
  
    
      #interaction_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Type of an interaction on conversion path. 
- 
  
    
      #node_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Node value of an interaction on conversion path. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ConversionPathValue 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ConversionPathValue. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ConversionPathValue
Returns a new instance of ConversionPathValue
| 3823 3824 3825 | # File 'generated/google/apis/analytics_v3/classes.rb', line 3823 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#interaction_type ⇒ String
Type of an interaction on conversion path. Such as CLICK, IMPRESSION etc.
Corresponds to the JSON property interactionType
| 3816 3817 3818 | # File 'generated/google/apis/analytics_v3/classes.rb', line 3816 def interaction_type @interaction_type end | 
#node_value ⇒ String
Node value of an interaction on conversion path. Such as source, medium etc.
Corresponds to the JSON property nodeValue
| 3821 3822 3823 | # File 'generated/google/apis/analytics_v3/classes.rb', line 3821 def node_value @node_value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3828 3829 3830 3831 | # File 'generated/google/apis/analytics_v3/classes.rb', line 3828 def update!(**args) @interaction_type = args[:interaction_type] if args.key?(:interaction_type) @node_value = args[:node_value] if args.key?(:node_value) end |