Show / Hide Table of Contents

Class ProgressCounter

ProgressCounter provides counters to describe an operation's progress.

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

Properties

ETag

The ETag of the item.

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

Failure

The number of units that failed in the operation.

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

Pending

The number of units that are pending in the operation.

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

Success

The number of units that succeeded in the operation.

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

Implements

IDirectResponseSchema
Back to top