Class: Google::Apis::FirestoreV1::CommitResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirestoreV1::CommitResponse
- 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
-
#commit_time ⇒ String
The time at which the commit occurred.
-
#write_results ⇒ Array<Google::Apis::FirestoreV1::WriteResult>
The result of applying the writes.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CommitResponse
constructor
A new instance of CommitResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CommitResponse
Returns a new instance of CommitResponse
252 253 254 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 252 def initialize(**args) update!(**args) end |
Instance Attribute Details
#commit_time ⇒ String
The time at which the commit occurred.
Corresponds to the JSON property commitTime
243 244 245 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 243 def commit_time @commit_time end |
#write_results ⇒ Array<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
250 251 252 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 250 def write_results @write_results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
257 258 259 260 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 257 def update!(**args) @commit_time = args[:commit_time] if args.key?(:commit_time) @write_results = args[:write_results] if args.key?(:write_results) end |