Class: Google::Apis::AnalyticsV3::McfData::Row::ConversionPathValue

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_typeString

Type of an interaction on conversion path. Such as CLICK, IMPRESSION etc. Corresponds to the JSON property interactionType

Returns:

  • (String)


3790
3791
3792
# File 'generated/google/apis/analytics_v3/classes.rb', line 3790

def interaction_type
  @interaction_type
end

#node_valueString

Node value of an interaction on conversion path. Such as source, medium etc. Corresponds to the JSON property nodeValue

Returns:

  • (String)


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