Class: Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::StringFilter
- Inherits:
-
Object
- Object
- Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::StringFilter
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/analytics/admin/v1alpha/audience.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::AudienceDimensionOrMetricFilter::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.
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'proto_docs/google/analytics/admin/v1alpha/audience.rb', line 83 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 # Begins with the string value. BEGINS_WITH = 2 # Ends with the string value. ENDS_WITH = 3 # Contains the string value. CONTAINS = 4 # Full regular expression matches with the string value. FULL_REGEXP = 5 end end |
#match_type ⇒ ::Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::StringFilter::MatchType
Returns Required. The match type for the string filter.
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'proto_docs/google/analytics/admin/v1alpha/audience.rb', line 83 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 # Begins with the string value. BEGINS_WITH = 2 # Ends with the string value. ENDS_WITH = 3 # Contains the string value. CONTAINS = 4 # Full regular expression matches with the string value. FULL_REGEXP = 5 end end |
#value ⇒ ::String
Returns Required. The string value to be matched against.
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'proto_docs/google/analytics/admin/v1alpha/audience.rb', line 83 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 # Begins with the string value. BEGINS_WITH = 2 # Ends with the string value. ENDS_WITH = 3 # Contains the string value. CONTAINS = 4 # Full regular expression matches with the string value. FULL_REGEXP = 5 end end |