Class: Google::Apis::FirestoreV1::CompositeFilter

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

Overview

A filter that merges multiple other filters using the given operator.

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) ⇒ CompositeFilter

Returns a new instance of CompositeFilter.



279
280
281
# File 'generated/google/apis/firestore_v1/classes.rb', line 279

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

Instance Attribute Details

#filtersArray<Google::Apis::FirestoreV1::Filter>

The list of filters to combine. Must contain at least one filter. Corresponds to the JSON property filters



272
273
274
# File 'generated/google/apis/firestore_v1/classes.rb', line 272

def filters
  @filters
end

#opString

The operator for combining multiple filters. Corresponds to the JSON property op

Returns:

  • (String)


277
278
279
# File 'generated/google/apis/firestore_v1/classes.rb', line 277

def op
  @op
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



284
285
286
287
# File 'generated/google/apis/firestore_v1/classes.rb', line 284

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