class Google::Apis::AnalyticsV3::Filter::LowercaseDetails

Details for the filter of the type LOWER.

Attributes

field[RW]

Field to use in the filter. Corresponds to the JSON property `field` @return [String]

field_index[RW]

The Index of the custom dimension. Required if field is a CUSTOM_DIMENSION. Corresponds to the JSON property `fieldIndex` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 2139
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analytics_v3/classes.rb, line 2144
def update!(**args)
  @field = args[:field] if args.key?(:field)
  @field_index = args[:field_index] if args.key?(:field_index)
end