Class MutationResult
The result of applying a mutation.
Inheritance
System.Object
MutationResult
Implements
Namespace: Google.Apis.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class MutationResult : object, 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
public virtual Nullable<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
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
public virtual Nullable<long> Version { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int64> |