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.
Constructor Details
#initialize(**args) ⇒ SegmentDimensionFilter
Returns a new instance of SegmentDimensionFilter.
1704 1705 1706 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1704 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
1676 1677 1678 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1676 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
1682 1683 1684 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1682 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
1687 1688 1689 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1687 def expressions @expressions end |
#max_comparison_value ⇒ String
Maximum comparison values for BETWEEN
match type.
Corresponds to the JSON property maxComparisonValue
1692 1693 1694 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1692 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
1697 1698 1699 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1697 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
1702 1703 1704 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1702 def operator @operator end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1709 1710 1711 1712 1713 1714 1715 1716 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1709 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 |