Show / Hide Table of Contents

Class GoogleDatastoreAdminV1Progress

Measures the progress of a particular metric.

Inheritance
System.Object
GoogleDatastoreAdminV1Progress
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 GoogleDatastoreAdminV1Progress : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

WorkCompleted

The amount of work that has been completed. Note that this may be greater than work_estimated.

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

WorkEstimated

An estimate of how much work needs to be performed. May be zero if the work estimate is unavailable.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top