Class: Google::Apis::FirestoreV1beta1::ReadOnly

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ReadOnly

Returns a new instance of ReadOnly



1554
1555
1556
# File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1554

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

Instance Attribute Details

#read_timeString

Reads documents at the given time. This may not be older than 60 seconds. Corresponds to the JSON property readTime

Returns:

  • (String)


1552
1553
1554
# File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1552

def read_time
  @read_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1559
1560
1561
# File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1559

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