Class CommitResponse
The response for Datastore.Commit.
Implements
Inherited Members
Namespace: Google.Apis.Datastore.v1.Data
Assembly: Google.Apis.Datastore.v1.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> |