Class: Google::Analytics::Data::V1beta::Filter::NumericFilter

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/analytics/data/v1beta/data.rb

Overview

Filters for numeric or date values.

Defined Under Namespace

Modules: Operation

Instance Attribute Summary collapse

Instance Attribute Details

#operation::Google::Analytics::Data::V1beta::Filter::NumericFilter::Operation

Returns The operation type for this filter.

Returns:



320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
# File 'proto_docs/google/analytics/data/v1beta/data.rb', line 320

class NumericFilter
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The operation applied to a numeric filter
  module Operation
    # Unspecified.
    OPERATION_UNSPECIFIED = 0

    # Equal
    EQUAL = 1

    # Less than
    LESS_THAN = 2

    # Less than or equal
    LESS_THAN_OR_EQUAL = 3

    # Greater than
    GREATER_THAN = 4

    # Greater than or equal
    GREATER_THAN_OR_EQUAL = 5
  end
end

#value::Google::Analytics::Data::V1beta::NumericValue

Returns A numeric value or a date value.

Returns:



320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
# File 'proto_docs/google/analytics/data/v1beta/data.rb', line 320

class NumericFilter
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The operation applied to a numeric filter
  module Operation
    # Unspecified.
    OPERATION_UNSPECIFIED = 0

    # Equal
    EQUAL = 1

    # Less than
    LESS_THAN = 2

    # Less than or equal
    LESS_THAN_OR_EQUAL = 3

    # Greater than
    GREATER_THAN = 4

    # Greater than or equal
    GREATER_THAN_OR_EQUAL = 5
  end
end