Class: Google::Analytics::Admin::V1alpha::SubpropertyEventFilterClause
- Inherits:
-
Object
- Object
- Google::Analytics::Admin::V1alpha::SubpropertyEventFilterClause
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/analytics/admin/v1alpha/subproperty_event_filter.rb
Overview
A clause for defining a filter. A filter may be inclusive (events satisfying the filter clause are included in the subproperty's data) or exclusive (events satisfying the filter clause are excluded from the subproperty's data).
Defined Under Namespace
Modules: FilterClauseType
Instance Attribute Summary collapse
-
#filter_clause_type ⇒ ::Google::Analytics::Admin::V1alpha::SubpropertyEventFilterClause::FilterClauseType
Required.
-
#filter_expression ⇒ ::Google::Analytics::Admin::V1alpha::SubpropertyEventFilterExpression
Required.
Instance Attribute Details
#filter_clause_type ⇒ ::Google::Analytics::Admin::V1alpha::SubpropertyEventFilterClause::FilterClauseType
Returns Required. The type for the filter clause.
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
# File 'proto_docs/google/analytics/admin/v1alpha/subproperty_event_filter.rb', line 128 class SubpropertyEventFilterClause include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Specifies whether this is an include or exclude filter clause. module FilterClauseType # Filter clause type unknown or not specified. FILTER_CLAUSE_TYPE_UNSPECIFIED = 0 # Events will be included in the Sub property if the filter clause is met. INCLUDE = 1 # Events will be excluded from the Sub property if the filter clause is # met. EXCLUDE = 2 end end |
#filter_expression ⇒ ::Google::Analytics::Admin::V1alpha::SubpropertyEventFilterExpression
Returns Required. The logical expression for what events are sent to the subproperty.
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
# File 'proto_docs/google/analytics/admin/v1alpha/subproperty_event_filter.rb', line 128 class SubpropertyEventFilterClause include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Specifies whether this is an include or exclude filter clause. module FilterClauseType # Filter clause type unknown or not specified. FILTER_CLAUSE_TYPE_UNSPECIFIED = 0 # Events will be included in the Sub property if the filter clause is met. INCLUDE = 1 # Events will be excluded from the Sub property if the filter clause is # met. EXCLUDE = 2 end end |