Class: Google::Apis::FirestoreV1::CommitResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/firestore_v1/classes.rb,
generated/google/apis/firestore_v1/representations.rb,
generated/google/apis/firestore_v1/representations.rb

Overview

The response for Firestore.Commit.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CommitResponse

Returns a new instance of CommitResponse.



301
302
303
# File 'generated/google/apis/firestore_v1/classes.rb', line 301

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

Instance Attribute Details

#commit_timeString

The time at which the commit occurred. Any read with an equal or greater read_time is guaranteed to see the effects of the commit. Corresponds to the JSON property commitTime

Returns:

  • (String)


293
294
295
# File 'generated/google/apis/firestore_v1/classes.rb', line 293

def commit_time
  @commit_time
end

#write_resultsArray<Google::Apis::FirestoreV1::WriteResult>

The result of applying the writes. This i-th write result corresponds to the i- th write in the request. Corresponds to the JSON property writeResults



299
300
301
# File 'generated/google/apis/firestore_v1/classes.rb', line 299

def write_results
  @write_results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



306
307
308
309
# File 'generated/google/apis/firestore_v1/classes.rb', line 306

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