class Google::Apis::FirestoreV1beta1::CompositeFilter

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

Attributes

filters[RW]

The list of filters to combine. Must contain at least one filter. Corresponds to the JSON property `filters` @return [Array<Google::Apis::FirestoreV1beta1::Filter>]

op[RW]

The operator for combining multiple filters. Corresponds to the JSON property `op` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firestore_v1beta1/classes.rb, line 331
def update!(**args)
  @filters = args[:filters] if args.key?(:filters)
  @op = args[:op] if args.key?(:op)
end