Class: Google::Analytics::Admin::V1alpha::ExpandedDataSetFilter::StringFilter
- Inherits:
-
Object
- Object
- Google::Analytics::Admin::V1alpha::ExpandedDataSetFilter::StringFilter
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/analytics/admin/v1alpha/expanded_data_set.rb
Overview
A filter for a string-type dimension that matches a particular pattern.
Defined Under Namespace
Modules: MatchType
Instance Attribute Summary collapse
-
#case_sensitive ⇒ ::Boolean
Optional.
-
#match_type ⇒ ::Google::Analytics::Admin::V1alpha::ExpandedDataSetFilter::StringFilter::MatchType
Required.
-
#value ⇒ ::String
Required.
Instance Attribute Details
#case_sensitive ⇒ ::Boolean
Returns Optional. If true, the match is case-sensitive. If false, the match is case-insensitive. Must be true when match_type is EXACT. Must be false when match_type is CONTAINS.
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'proto_docs/google/analytics/admin/v1alpha/expanded_data_set.rb', line 52 class StringFilter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The match type for the string filter. module MatchType # Unspecified MATCH_TYPE_UNSPECIFIED = 0 # Exact match of the string value. EXACT = 1 # Contains the string value. CONTAINS = 2 end end |
#match_type ⇒ ::Google::Analytics::Admin::V1alpha::ExpandedDataSetFilter::StringFilter::MatchType
Returns Required. The match type for the string filter.
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'proto_docs/google/analytics/admin/v1alpha/expanded_data_set.rb', line 52 class StringFilter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The match type for the string filter. module MatchType # Unspecified MATCH_TYPE_UNSPECIFIED = 0 # Exact match of the string value. EXACT = 1 # Contains the string value. CONTAINS = 2 end end |
#value ⇒ ::String
Returns Required. The string value to be matched against.
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'proto_docs/google/analytics/admin/v1alpha/expanded_data_set.rb', line 52 class StringFilter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The match type for the string filter. module MatchType # Unspecified MATCH_TYPE_UNSPECIFIED = 0 # Exact match of the string value. EXACT = 1 # Contains the string value. CONTAINS = 2 end end |