Class: Google::Apis::FirestoreV1beta1::WriteResponse

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

Overview

The response for Firestore.Write.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ WriteResponse

Returns a new instance of WriteResponse.



3082
3083
3084
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 3082

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 write. Corresponds to the JSON property commitTime

Returns:

  • (String)


3060
3061
3062
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 3060

def commit_time
  @commit_time
end

#stream_idString

The ID of the stream. Only set on the first message, when a new stream was created. Corresponds to the JSON property streamId

Returns:

  • (String)


3066
3067
3068
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 3066

def stream_id
  @stream_id
end

#stream_tokenString

A token that represents the position of this response in the stream. This can be used by a client to resume the stream at this point. This field is always set. Corresponds to the JSON property streamToken NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


3074
3075
3076
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 3074

def stream_token
  @stream_token
end

#write_resultsArray<Google::Apis::FirestoreV1beta1::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



3080
3081
3082
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 3080

def write_results
  @write_results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3087
3088
3089
3090
3091
3092
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 3087

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