class Google::Apis::AnalyticsdataV1alpha::StringFilter
The filter for string
Attributes
case_sensitive[RW]
If true, the string value is case sensitive. Corresponds to the JSON property `caseSensitive` @return [Boolean]
case_sensitive?[RW]
If true, the string value is case sensitive. Corresponds to the JSON property `caseSensitive` @return [Boolean]
match_type[RW]
The match type for this filter. Corresponds to the JSON property `matchType` @return [String]
value[RW]
The string value used for the matching. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analyticsdata_v1alpha/classes.rb, line 1866 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/analyticsdata_v1alpha/classes.rb, line 1871 def update!(**args) @case_sensitive = args[:case_sensitive] if args.key?(:case_sensitive) @match_type = args[:match_type] if args.key?(:match_type) @value = args[:value] if args.key?(:value) end