Class: Google::Apis::AnalyticsV3::Goal::VisitTimeOnSiteDetails

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

Overview

Details for the goal of the type VISIT_TIME_ON_SITE.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ VisitTimeOnSiteDetails

Returns a new instance of VisitTimeOnSiteDetails.



3116
3117
3118
# File 'generated/google/apis/analytics_v3/classes.rb', line 3116

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#comparison_typeString

Type of comparison. Possible values are LESS_THAN or GREATER_THAN. Corresponds to the JSON property comparisonType

Returns:

  • (String)


3109
3110
3111
# File 'generated/google/apis/analytics_v3/classes.rb', line 3109

def comparison_type
  @comparison_type
end

#comparison_valueString

Value used for this comparison. Corresponds to the JSON property comparisonValue

Returns:

  • (String)


3114
3115
3116
# File 'generated/google/apis/analytics_v3/classes.rb', line 3114

def comparison_value
  @comparison_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3121
3122
3123
3124
# File 'generated/google/apis/analytics_v3/classes.rb', line 3121

def update!(**args)
  @comparison_type = args[:comparison_type] if args.key?(:comparison_type)
  @comparison_value = args[:comparison_value] if args.key?(:comparison_value)
end