Class: Google::Apis::FirestoreV1beta1::Order
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::FirestoreV1beta1::Order
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firestore_v1beta1/classes.rb,
 generated/google/apis/firestore_v1beta1/representations.rb,
 generated/google/apis/firestore_v1beta1/representations.rb
Overview
An order on a field.
Instance Attribute Summary collapse
- 
  
    
      #direction  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The direction to order by. 
- 
  
    
      #field  ⇒ Google::Apis::FirestoreV1beta1::FieldReference 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A reference to a field, such as max(messages.time) as max_time.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Order 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Order. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Order
Returns a new instance of Order
| 1134 1135 1136 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1134 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#direction ⇒ String
The direction to order by. Defaults to ASCENDING.
Corresponds to the JSON property direction
| 1127 1128 1129 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1127 def direction @direction end | 
#field ⇒ Google::Apis::FirestoreV1beta1::FieldReference
A reference to a field, such as max(messages.time) as max_time.
Corresponds to the JSON property field
| 1132 1133 1134 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1132 def field @field end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1139 1140 1141 1142 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1139 def update!(**args) @direction = args[:direction] if args.key?(:direction) @field = args[:field] if args.key?(:field) end |