Class: Google::Apis::FirestoreV1::UnaryFilter

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 with a single operand.

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

Returns a new instance of UnaryFilter.



2291
2292
2293
# File 'generated/google/apis/firestore_v1/classes.rb', line 2291

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

Instance Attribute Details

#fieldGoogle::Apis::FirestoreV1::FieldReference

A reference to a field, such as max(messages.time) as max_time. Corresponds to the JSON property field



2284
2285
2286
# File 'generated/google/apis/firestore_v1/classes.rb', line 2284

def field
  @field
end

#opString

The unary operator to apply. Corresponds to the JSON property op

Returns:

  • (String)


2289
2290
2291
# File 'generated/google/apis/firestore_v1/classes.rb', line 2289

def op
  @op
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2296
2297
2298
2299
# File 'generated/google/apis/firestore_v1/classes.rb', line 2296

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