Class: Google::Apis::FirestoreV1::Order

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

An order on a field.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Order

Returns a new instance of Order.



1781
1782
1783
# File 'generated/google/apis/firestore_v1/classes.rb', line 1781

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

Instance Attribute Details

#directionString

The direction to order by. Defaults to ASCENDING. Corresponds to the JSON property direction

Returns:

  • (String)


1774
1775
1776
# File 'generated/google/apis/firestore_v1/classes.rb', line 1774

def direction
  @direction
end

#fieldGoogle::Apis::FirestoreV1::FieldReference

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



1779
1780
1781
# File 'generated/google/apis/firestore_v1/classes.rb', line 1779

def field
  @field
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1786
1787
1788
1789
# File 'generated/google/apis/firestore_v1/classes.rb', line 1786

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