class Google::Apis::AnalyticsdataV1beta::BetweenFilter

To express that the result needs to be between two numbers (inclusive).

Attributes

from_value[RW]

To represent a number. Corresponds to the JSON property `fromValue` @return [Google::Apis::AnalyticsdataV1beta::NumericValue]

to_value[RW]

To represent a number. Corresponds to the JSON property `toValue` @return [Google::Apis::AnalyticsdataV1beta::NumericValue]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 133
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 138
def update!(**args)
  @from_value = args[:from_value] if args.key?(:from_value)
  @to_value = args[:to_value] if args.key?(:to_value)
end