Class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaAccessInListFilter
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaAccessInListFilter
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1beta/classes.rb,
lib/google/apis/analyticsadmin_v1beta/representations.rb,
lib/google/apis/analyticsadmin_v1beta/representations.rb
Overview
The result needs to be in a list of string values.
Instance Attribute Summary collapse
-
#case_sensitive ⇒ Boolean
(also: #case_sensitive?)
If true, the string value is case sensitive.
-
#values ⇒ Array<String>
The list of string values.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaAccessInListFilter
constructor
A new instance of GoogleAnalyticsAdminV1betaAccessInListFilter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaAccessInListFilter
Returns a new instance of GoogleAnalyticsAdminV1betaAccessInListFilter.
263 264 265 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 263 def initialize(**args) update!(**args) end |
Instance Attribute Details
#case_sensitive ⇒ Boolean Also known as: case_sensitive?
If true, the string value is case sensitive.
Corresponds to the JSON property caseSensitive
255 256 257 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 255 def case_sensitive @case_sensitive end |
#values ⇒ Array<String>
The list of string values. Must be non-empty.
Corresponds to the JSON property values
261 262 263 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 261 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
268 269 270 271 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 268 def update!(**args) @case_sensitive = args[:case_sensitive] if args.key?(:case_sensitive) @values = args[:values] if args.key?(:values) end |