Class: Google::Analytics::Data::V1alpha::Filter::NumericFilter
- Inherits:
-
Object
- Object
- Google::Analytics::Data::V1alpha::Filter::NumericFilter
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/analytics/data/v1alpha/data.rb
Overview
Filters for numeric or date values.
Defined Under Namespace
Modules: Operation
Instance Attribute Summary collapse
-
#operation ⇒ ::Google::Analytics::Data::V1alpha::Filter::NumericFilter::Operation
The operation type for this filter.
-
#value ⇒ ::Google::Analytics::Data::V1alpha::NumericValue
A numeric value or a date value.
Instance Attribute Details
#operation ⇒ ::Google::Analytics::Data::V1alpha::Filter::NumericFilter::Operation
Returns The operation type for this filter.
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
# File 'proto_docs/google/analytics/data/v1alpha/data.rb', line 279 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::V1alpha::NumericValue
Returns A numeric value or a date value.
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
# File 'proto_docs/google/analytics/data/v1alpha/data.rb', line 279 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 |