Class: Google::Cloud::Firestore::CommitResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Cloud::Firestore::CommitResponse
 
 
- Defined in:
 - lib/google/cloud/firestore/commit_response.rb
 
Overview
CommitResponse
The response for a commit.
Defined Under Namespace
Classes: WriteResult
Instance Attribute Summary collapse
- 
  
    
      #commit_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time at which the commit occurred.
 - 
  
    
      #write_results  ⇒ Array<CommitResponse::WriteResult> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The result of applying the writes.
 
Instance Attribute Details
#commit_time ⇒ Time
The time at which the commit occurred.
      60 61 62  | 
    
      # File 'lib/google/cloud/firestore/commit_response.rb', line 60 def commit_time @commit_time end  | 
  
#write_results ⇒ Array<CommitResponse::WriteResult>
The result of applying the writes.
This i-th write result corresponds to the i-th write in the request.
      68 69 70  | 
    
      # File 'lib/google/cloud/firestore/commit_response.rb', line 68 def write_results @write_results end  |