Class: Google::Apis::AnalyticsV3::Filter::UppercaseDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/analytics_v3/classes.rb,
generated/google/apis/analytics_v3/representations.rb,
generated/google/apis/analytics_v3/representations.rb

Overview

Details for the filter of the type UPPER.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UppercaseDetails

Returns a new instance of UppercaseDetails



2328
2329
2330
# File 'generated/google/apis/analytics_v3/classes.rb', line 2328

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#fieldString

Field to use in the filter. Corresponds to the JSON property field

Returns:

  • (String)


2321
2322
2323
# File 'generated/google/apis/analytics_v3/classes.rb', line 2321

def field
  @field
end

#field_indexFixnum

The Index of the custom dimension. Required if field is a CUSTOM_DIMENSION. Corresponds to the JSON property fieldIndex

Returns:

  • (Fixnum)


2326
2327
2328
# File 'generated/google/apis/analytics_v3/classes.rb', line 2326

def field_index
  @field_index
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2333
2334
2335
2336
# File 'generated/google/apis/analytics_v3/classes.rb', line 2333

def update!(**args)
  @field = args[:field] if args.key?(:field)
  @field_index = args[:field_index] if args.key?(:field_index)
end