class Google::Apis::AnalyticsdataV1alpha::InListFilter

The result needs to be in a list of string values.

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]

values[RW]

The list of string values. Must be non-empty. Corresponds to the JSON property `values` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsdata_v1alpha/classes.rb, line 721
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 726
def update!(**args)
  @case_sensitive = args[:case_sensitive] if args.key?(:case_sensitive)
  @values = args[:values] if args.key?(:values)
end