Class: Google::Apis::FirestoreV1beta1::Order

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firestore_v1beta1/classes.rb,
lib/google/apis/firestore_v1beta1/representations.rb,
lib/google/apis/firestore_v1beta1/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.



2012
2013
2014
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 2012

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)


2005
2006
2007
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 2005

def direction
  @direction
end

#fieldGoogle::Apis::FirestoreV1beta1::FieldReference

A reference to a field in a document, ex: stats.operations. Corresponds to the JSON property field



2010
2011
2012
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 2010

def field
  @field
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2017
2018
2019
2020
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 2017

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