Class: Google::Apis::FirestoreV1::ReadOnly
- Inherits:
-
Object
- Object
- Google::Apis::FirestoreV1::ReadOnly
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firestore_v1/classes.rb,
lib/google/apis/firestore_v1/representations.rb,
lib/google/apis/firestore_v1/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.
Constructor Details
#initialize(**args) ⇒ ReadOnly
Returns a new instance of ReadOnly.
2725 2726 2727 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 2725 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
2723 2724 2725 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 2723 def read_time @read_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2730 2731 2732 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 2730 def update!(**args) @read_time = args[:read_time] if args.key?(:read_time) end |