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.
Constructor Details
#initialize(**args) ⇒ ConversionPathValue
Returns a new instance of ConversionPathValue.
3797 3798 3799 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3797 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
3790 3791 3792 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3790 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
3795 3796 3797 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3795 def node_value @node_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3802 3803 3804 3805 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3802 def update!(**args) @interaction_type = args[:interaction_type] if args.key?(:interaction_type) @node_value = args[:node_value] if args.key?(:node_value) end |