Class BatchWriteResponse
The response from Firestore.BatchWrite.
Implements
Inherited Members
Namespace: Google.Apis.Firestore.v1beta1.Data
Assembly: Google.Apis.Firestore.v1beta1.dll
Syntax
public class BatchWriteResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Status
The status of applying the writes. This i-th write status corresponds to the i-th write in the request.
Declaration
[JsonProperty("status")]
public virtual IList<Status> Status { get; set; }
Property Value
Type | Description |
---|---|
IList<Status> |
WriteResults
The result of applying the writes. This i-th write result corresponds to the i-th write in the request.
Declaration
[JsonProperty("writeResults")]
public virtual IList<WriteResult> WriteResults { get; set; }
Property Value
Type | Description |
---|---|
IList<WriteResult> |