Show / Hide Table of Contents

Class CommitResponse

The response for Commit.

Inheritance
System.Object
CommitResponse
Implements
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.Spanner.v1.Data
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class CommitResponse : IDirectResponseSchema

Properties

CommitStats

The statistics about this Commit. Not returned by default. For more information, see CommitRequest.return_commit_stats.

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

CommitTimestamp

The Cloud Spanner timestamp at which the transaction committed.

Declaration
[JsonProperty("commitTimestamp")]
public virtual object CommitTimestamp { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

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

Implements

IDirectResponseSchema
In This Article
Back to top