Show / Hide Table of Contents

Class SourceResultCount

Per source result count information.

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

Properties

ETag

The ETag of the item.

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

HasMoreResults

Whether there are more search results for this source.

Declaration
[JsonProperty("hasMoreResults")]
public virtual bool? HasMoreResults { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ResultCountEstimate

The estimated result count for this source.

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

ResultCountExact

The exact result count for this source.

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

Source

The source the result count information is associated with.

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

Implements

IDirectResponseSchema
Back to top