Class: Google::Analytics::Data::V1beta::Filter::NumericFilter
- Inherits:
-
Object
- Object
- Google::Analytics::Data::V1beta::Filter::NumericFilter
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/analytics/data/v1beta/data.rb
Overview
Filters for numeric or date values.
Defined Under Namespace
Modules: Operation
Instance Attribute Summary collapse
-
#operation ⇒ ::Google::Analytics::Data::V1beta::Filter::NumericFilter::Operation
The operation type for this filter.
-
#value ⇒ ::Google::Analytics::Data::V1beta::NumericValue
A numeric value or a date value.
Instance Attribute Details
#operation ⇒ ::Google::Analytics::Data::V1beta::Filter::NumericFilter::Operation
Returns The operation type for this filter.
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 |
# File 'proto_docs/google/analytics/data/v1beta/data.rb', line 339 class NumericFilter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The operation applied to a numeric filter module Operation # Unspecified. OPERATION_UNSPECIFIED = 0 # Equal EQUAL = 1 # Less than LESS_THAN = 2 # Less than or equal LESS_THAN_OR_EQUAL = 3 # Greater than GREATER_THAN = 4 # Greater than or equal GREATER_THAN_OR_EQUAL = 5 end end |
#value ⇒ ::Google::Analytics::Data::V1beta::NumericValue
Returns A numeric value or a date value.
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 |
# File 'proto_docs/google/analytics/data/v1beta/data.rb', line 339 class NumericFilter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The operation applied to a numeric filter module Operation # Unspecified. OPERATION_UNSPECIFIED = 0 # Equal EQUAL = 1 # Less than LESS_THAN = 2 # Less than or equal LESS_THAN_OR_EQUAL = 3 # Greater than GREATER_THAN = 4 # Greater than or equal GREATER_THAN_OR_EQUAL = 5 end end |