class Google::Apis::DatastoreV1beta3::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::DatastoreV1beta3::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/datastore_v1beta3/classes.rb, line 205 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/datastore_v1beta3/classes.rb, line 210 def update!(**args) @filters = args[:filters] if args.key?(:filters) @op = args[:op] if args.key?(:op) end