Show / Hide Table of Contents

Class CommitResponse

The response for Datastore.Commit.

Inheritance
System.Object
CommitResponse
Implements
IDirectResponseSchema
Namespace: Google.Apis.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class CommitResponse : object, IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

IndexUpdates

The number of index entries updated during the commit, or zero if none were updated.

Declaration
public virtual Nullable<int> IndexUpdates { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MutationResults

The result of performing the mutations. The i-th mutation result corresponds to the i-th mutation in the request.

Declaration
public virtual IList<MutationResult> MutationResults { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<MutationResult>

Implements

IDirectResponseSchema
Back to top