Show / Hide Table of Contents

Class FacetResult

Source specific facet response

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

Properties

Buckets

FacetBuckets for values in response containing at least a single result.

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

ETag

The ETag of the item.

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

ObjectType

Object type for which facet results are returned. Can be empty.

Declaration
[JsonProperty("objectType")]
public virtual string ObjectType { get; set; }
Property Value
Type Description
System.String

OperatorName

Name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions

Declaration
[JsonProperty("operatorName")]
public virtual string OperatorName { get; set; }
Property Value
Type Description
System.String

SourceName

Source name for which facet results are returned. Will not be empty.

Declaration
[JsonProperty("sourceName")]
public virtual string SourceName { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top