class Google::Apis::AnalyticsV3::Goal::VisitNumPagesDetails

Details for the goal of the type VISIT_NUM_PAGES.

Attributes

comparison_type[RW]

Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL. 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 3187
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 3192
def update!(**args)
  @comparison_type = args[:comparison_type] if args.key?(:comparison_type)
  @comparison_value = args[:comparison_value] if args.key?(:comparison_value)
end