Show / Hide Table of Contents

Class CommitResponse

The response for Datastore.Commit.

Inheritance
object
CommitResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class CommitResponse : IDirectResponseSchema

Properties

CommitTime

object representation of CommitTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use CommitTimeDateTimeOffset instead.")]
public virtual object CommitTime { get; set; }
Property Value
Type Description
object

CommitTimeDateTimeOffset

DateTimeOffset representation of CommitTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? CommitTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

CommitTimeRaw

The transaction commit timestamp. Not set for non-transactional commits.

Declaration
[JsonProperty("commitTime")]
public virtual string CommitTimeRaw { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

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

IndexUpdates

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

Declaration
[JsonProperty("indexUpdates")]
public virtual int? IndexUpdates { get; set; }
Property Value
Type Description
int?

MutationResults

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

Declaration
[JsonProperty("mutationResults")]
public virtual IList<MutationResult> MutationResults { get; set; }
Property Value
Type Description
IList<MutationResult>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX