class Google::Apis::AnalyticsV3::Goal::VisitTimeOnSiteDetails
Details for the goal of the type VISIT_TIME_ON_SITE.
Attributes
comparison_type[RW]
Type of comparison. Possible values are LESS_THAN or GREATER_THAN. Corresponds to the JSON property `comparisonType` @return [String]
comparison_value[RW]
Value used for this comparison. Corresponds to the JSON property `comparisonValue` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 3212 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 3217 def update!(**args) @comparison_type = args[:comparison_type] if args.key?(:comparison_type) @comparison_value = args[:comparison_value] if args.key?(:comparison_value) end