Class: Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::NumericFilter
- Inherits:
-
Object
- Object
- Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::NumericFilter
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/analytics/admin/v1alpha/audience.rb
Overview
A filter for numeric or date values on a dimension or metric.
Defined Under Namespace
Modules: Operation
Instance Attribute Summary collapse
-
#operation ⇒ ::Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::NumericFilter::Operation
Required.
-
#value ⇒ ::Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::NumericValue
Required.
Instance Attribute Details
#operation ⇒ ::Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::NumericFilter::Operation
Returns Required. The operation applied to a numeric filter.
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'proto_docs/google/analytics/admin/v1alpha/audience.rb', line 154 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 # Greater than. GREATER_THAN = 4 end end |
#value ⇒ ::Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::NumericValue
Returns Required. The numeric or date value to match against.
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'proto_docs/google/analytics/admin/v1alpha/audience.rb', line 154 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 # Greater than. GREATER_THAN = 4 end end |