Class: Google::Apis::FirestoreV1beta1::RunQueryResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirestoreV1beta1::RunQueryResponse
 
 
- 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
The response for Firestore.RunQuery.
Instance Attribute Summary collapse
- 
  
    
      #document  ⇒ Google::Apis::FirestoreV1beta1::Document 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A Firestore document.
 - 
  
    
      #read_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time at which the document was read.
 - 
  
    
      #skipped_results  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of results that have been skipped due to an offset between the last response and the current response.
 - 
  
    
      #transaction  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The transaction that was started as part of this request.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RunQueryResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of RunQueryResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RunQueryResponse
Returns a new instance of RunQueryResponse
      1660 1661 1662  | 
    
      # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1660 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#document ⇒ Google::Apis::FirestoreV1beta1::Document
A Firestore document.
Must not exceed 1 MiB - 4 bytes.
Corresponds to the JSON property document
      1633 1634 1635  | 
    
      # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1633 def document @document end  | 
  
#read_time ⇒ String
The time at which the document was read. This may be monotonically
increasing; in this case, the previous documents in the result stream are
guaranteed not to have changed between their read_time and this one.
If the query returns no results, a response with read_time and no
document will be sent, and this represents the time at which the query
was run.
Corresponds to the JSON property readTime
      1643 1644 1645  | 
    
      # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1643 def read_time @read_time end  | 
  
#skipped_results ⇒ Fixnum
The number of results that have been skipped due to an offset between
the last response and the current response.
Corresponds to the JSON property skippedResults
      1649 1650 1651  | 
    
      # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1649 def skipped_results @skipped_results end  | 
  
#transaction ⇒ String
The transaction that was started as part of this request.
Can only be set in the first response, and only if
RunQueryRequest.new_transaction was set in the request.
If set, no other fields will be set in this response.
Corresponds to the JSON property transaction
NOTE: Values are automatically base64 encoded/decoded in the client library.
      1658 1659 1660  | 
    
      # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1658 def transaction @transaction end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1665 1666 1667 1668 1669 1670  | 
    
      # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1665 def update!(**args) @document = args[:document] if args.key?(:document) @read_time = args[:read_time] if args.key?(:read_time) @skipped_results = args[:skipped_results] if args.key?(:skipped_results) @transaction = args[:transaction] if args.key?(:transaction) end  |