Class: Google::Analytics::Admin::V1alpha::AccessNumericFilter
- Inherits:
-
Object
- Object
- Google::Analytics::Admin::V1alpha::AccessNumericFilter
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/analytics/admin/v1alpha/access_report.rb
Overview
Filters for numeric or date values.
Defined Under Namespace
Modules: Operation
Instance Attribute Summary collapse
-
#operation ⇒ ::Google::Analytics::Admin::V1alpha::AccessNumericFilter::Operation
The operation type for this filter.
-
#value ⇒ ::Google::Analytics::Admin::V1alpha::NumericValue
A numeric value or a date value.
Instance Attribute Details
#operation ⇒ ::Google::Analytics::Admin::V1alpha::AccessNumericFilter::Operation
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'proto_docs/google/analytics/admin/v1alpha/access_report.rb', line 179 class AccessNumericFilter 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::Admin::V1alpha::NumericValue
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'proto_docs/google/analytics/admin/v1alpha/access_report.rb', line 179 class AccessNumericFilter 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 |