class Google::Apis::AnalyticsV3::McfData::Row::ConversionPathValue
Attributes
interaction_type[RW]
Type of an interaction on conversion path. Such as CLICK, IMPRESSION etc. Corresponds to the JSON property `interactionType` @return [String]
node_value[RW]
Node value of an interaction on conversion path. Such as source, medium etc. Corresponds to the JSON property `nodeValue` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 3797 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/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