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
3851 3852 3853 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3851 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
3844 3845 3846 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3844 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
3849 3850 3851 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3849 def node_value @node_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3856 3857 3858 3859 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3856 def update!(**args) @interaction_type = args[:interaction_type] if args.key?(:interaction_type) @node_value = args[:node_value] if args.key?(:node_value) end |