Class: Google::Apis::FirestoreV1::ReadOnly

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReadOnly

Returns a new instance of ReadOnly.



3733
3734
3735
# File 'lib/google/apis/firestore_v1/classes.rb', line 3733

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#read_timeString

Reads documents at the given time. This must be a microsecond precision timestamp within the past one hour, or if Point-in-Time Recovery is enabled, can additionally be a whole minute timestamp within the past 7 days. Corresponds to the JSON property readTime

Returns:

  • (String)


3731
3732
3733
# File 'lib/google/apis/firestore_v1/classes.rb', line 3731

def read_time
  @read_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3738
3739
3740
# File 'lib/google/apis/firestore_v1/classes.rb', line 3738

def update!(**args)
  @read_time = args[:read_time] if args.key?(:read_time)
end