Class: Google::Apis::FirestoreV1beta1::ReadOnly
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirestoreV1beta1::ReadOnly
 
 
- 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
Options for a transaction that can only be used to read documents.
Instance Attribute Summary collapse
- 
  
    
      #read_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Reads documents at the given time.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ReadOnly 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ReadOnly.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReadOnly
Returns a new instance of ReadOnly
      1536 1537 1538  | 
    
      # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1536 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#read_time ⇒ String
Reads documents at the given time.
This may not be older than 60 seconds.
Corresponds to the JSON property readTime
      1534 1535 1536  | 
    
      # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1534 def read_time @read_time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1541 1542 1543  | 
    
      # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1541 def update!(**args) @read_time = args[:read_time] if args.key?(:read_time) end  |