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.
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'proto_docs/google/analytics/admin/v1alpha/audience.rb', line 142 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.
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'proto_docs/google/analytics/admin/v1alpha/audience.rb', line 142 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 |