Show / Hide Table of Contents

Class MutationResult

The result of applying a mutation.

Inheritance
System.Object
MutationResult
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Datastore.v1.Data
Assembly: Google.Apis.Datastore.v1.dll
Syntax
public class MutationResult : IDirectResponseSchema

Properties

ConflictDetected

Whether a conflict was detected for this mutation. Always false when a conflict detection strategy field is not set in the mutation.

Declaration
[JsonProperty("conflictDetected")]
public virtual bool? ConflictDetected { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

Key

The automatically allocated key. Set only when the mutation allocated a key.

Declaration
[JsonProperty("key")]
public virtual Key Key { get; set; }
Property Value
Type Description
Key

Version

The version of the entity on the server after processing the mutation. If the mutation doesn't change anything on the server, then the version will be the version of the current entity or, if no entity is present, a version that is strictly greater than the version of any previous entity and less than the version of any possible future entity.

Declaration
[JsonProperty("version")]
public virtual long? Version { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top