Class: Google::Analytics::Admin::V1alpha::SubpropertyEventFilterClause

Inherits:
Object
  • Object
show all
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

Instance Attribute Details

#filter_clause_type::Google::Analytics::Admin::V1alpha::SubpropertyEventFilterClause::FilterClauseType

Returns Required. The type for the filter clause.

Returns:



118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'proto_docs/google/analytics/admin/v1alpha/subproperty_event_filter.rb', line 118

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.

Returns:



118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'proto_docs/google/analytics/admin/v1alpha/subproperty_event_filter.rb', line 118

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