class Google::Apis::AnalyticsV3::McfData::Row
A union object representing a dimension or metric value. Only one of “ primitiveValue” or “conversionPathValue” attribute will be populated.
Attributes
conversion_path_value[RW]
A conversion path dimension value, containing a list of interactions with their attributes. Corresponds to the JSON property `conversionPathValue` @return [Array<Google::Apis::AnalyticsV3::McfData::Row::ConversionPathValue>]
primitive_value[RW]
A primitive dimension value. A primitive metric value. Corresponds to the JSON property `primitiveValue` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 3773 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 3778 def update!(**args) @conversion_path_value = args[:conversion_path_value] if args.key?(:conversion_path_value) @primitive_value = args[:primitive_value] if args.key?(:primitive_value) end