Show / Hide Table of Contents

Class DataSourceIndexStats

Aggregation of items by status code as of the specified date.

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

Properties

Date

Date for which index stats were calculated. If the date of request is not the current date then stats calculated on the next day are returned. Stats are calculated close to mid night in this case. If date of request is current date, then real time stats are returned.

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

ETag

The ETag of the item.

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

ItemCountByStatus

Number of items aggregrated by status code.

Declaration
[JsonProperty("itemCountByStatus")]
public virtual IList<ItemCountByStatus> ItemCountByStatus { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ItemCountByStatus>

Implements

IDirectResponseSchema
Back to top