Class: Google::Apis::AnalyticsreportingV4::SegmentMetricFilter
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsreportingV4::SegmentMetricFilter
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analyticsreporting_v4/classes.rb,
generated/google/apis/analyticsreporting_v4/representations.rb,
generated/google/apis/analyticsreporting_v4/representations.rb
Overview
Metric filter to be used in a segment filter clause.
Instance Attribute Summary collapse
-
#comparison_value ⇒ String
The value to compare against.
-
#max_comparison_value ⇒ String
Max comparison value is only used for
BETWEENoperator. -
#metric_name ⇒ String
The metric that will be filtered on.
-
#operator ⇒ String
Specifies is the operation to perform to compare the metric.
-
#scope ⇒ String
Scope for a metric defines the level at which that metric is defined.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SegmentMetricFilter
constructor
A new instance of SegmentMetricFilter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SegmentMetricFilter
Returns a new instance of SegmentMetricFilter
1196 1197 1198 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1196 def initialize(**args) update!(**args) end |
Instance Attribute Details
#comparison_value ⇒ String
The value to compare against. If the operator is BETWEEN, this value is
treated as minimum comparison value.
Corresponds to the JSON property comparisonValue
1182 1183 1184 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1182 def comparison_value @comparison_value end |
#max_comparison_value ⇒ String
Max comparison value is only used for BETWEEN operator.
Corresponds to the JSON property maxComparisonValue
1176 1177 1178 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1176 def max_comparison_value @max_comparison_value end |
#metric_name ⇒ String
The metric that will be filtered on. A metricFilter must contain a
metric name.
Corresponds to the JSON property metricName
1194 1195 1196 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1194 def metric_name @metric_name end |
#operator ⇒ String
Specifies is the operation to perform to compare the metric. The default
is EQUAL.
Corresponds to the JSON property operator
1188 1189 1190 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1188 def operator @operator end |
#scope ⇒ String
Scope for a metric defines the level at which that metric is defined. The
specified metric scope must be equal to or greater than its primary scope
as defined in the data model. The primary scope is defined by if the
segment is selecting users or sessions.
Corresponds to the JSON property scope
1171 1172 1173 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1171 def scope @scope end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1201 1202 1203 1204 1205 1206 1207 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1201 def update!(**args) @scope = args[:scope] if args.key?(:scope) @max_comparison_value = args[:max_comparison_value] if args.key?(:max_comparison_value) @comparison_value = args[:comparison_value] if args.key?(:comparison_value) @operator = args[:operator] if args.key?(:operator) @metric_name = args[:metric_name] if args.key?(:metric_name) end |