Class: Google::Apis::AnalyticsreportingV4::SegmentDimensionFilter
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsreportingV4::SegmentDimensionFilter
- 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
Dimension filter specifies the filtering options on a dimension.
Instance Attribute Summary collapse
-
#case_sensitive ⇒ Boolean
(also: #case_sensitive?)
Should the match be case sensitive, ignored for
IN_LIST
operator. -
#dimension_name ⇒ String
Name of the dimension for which the filter is being applied.
-
#expressions ⇒ Array<String>
The list of expressions, only the first element is used for all operators Corresponds to the JSON property
expressions
. -
#max_comparison_value ⇒ String
Maximum comparison values for
BETWEEN
match type. -
#min_comparison_value ⇒ String
Minimum comparison values for
BETWEEN
match type. -
#operator ⇒ String
The operator to use to match the dimension with the expressions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SegmentDimensionFilter
constructor
A new instance of SegmentDimensionFilter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SegmentDimensionFilter
Returns a new instance of SegmentDimensionFilter
1190 1191 1192 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1190 def initialize(**args) update!(**args) end |
Instance Attribute Details
#case_sensitive ⇒ Boolean Also known as: case_sensitive?
Should the match be case sensitive, ignored for IN_LIST
operator.
Corresponds to the JSON property caseSensitive
1162 1163 1164 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1162 def case_sensitive @case_sensitive end |
#dimension_name ⇒ String
Name of the dimension for which the filter is being applied.
Corresponds to the JSON property dimensionName
1168 1169 1170 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1168 def dimension_name @dimension_name end |
#expressions ⇒ Array<String>
The list of expressions, only the first element is used for all operators
Corresponds to the JSON property expressions
1173 1174 1175 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1173 def expressions @expressions end |
#max_comparison_value ⇒ String
Maximum comparison values for BETWEEN
match type.
Corresponds to the JSON property maxComparisonValue
1178 1179 1180 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1178 def max_comparison_value @max_comparison_value end |
#min_comparison_value ⇒ String
Minimum comparison values for BETWEEN
match type.
Corresponds to the JSON property minComparisonValue
1183 1184 1185 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1183 def min_comparison_value @min_comparison_value end |
#operator ⇒ String
The operator to use to match the dimension with the expressions.
Corresponds to the JSON property operator
1188 1189 1190 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1188 def operator @operator end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1195 1196 1197 1198 1199 1200 1201 1202 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1195 def update!(**args) @case_sensitive = args[:case_sensitive] if args.key?(:case_sensitive) @dimension_name = args[:dimension_name] if args.key?(:dimension_name) @expressions = args[:expressions] if args.key?(:expressions) @max_comparison_value = args[:max_comparison_value] if args.key?(:max_comparison_value) @min_comparison_value = args[:min_comparison_value] if args.key?(:min_comparison_value) @operator = args[:operator] if args.key?(:operator) end |