Class DefaultFacetResult
The default facet result.
Implements
Inherited Members
Namespace: Couchbase.Search
Assembly: Couchbase.NetClient.dll
Syntax
public class DefaultFacetResult : IFacetResult
Properties
| Edit this page View SourceFacetResultType
Gets the type of the facet result.
Declaration
[JsonProperty("FacetResultType")]
public virtual FacetResultType FacetResultType { get; }
Property Value
Type | Description |
---|---|
FacetResultType | The type of the facet result. |
Field
Gets the field used for the facet.
Declaration
[JsonProperty("field")]
public string Field { get; set; }
Property Value
Type | Description |
---|---|
string | The field. |
Missing
Gets the number of misses for the facet.
Declaration
[JsonProperty("missing")]
public long Missing { get; set; }
Property Value
Type | Description |
---|---|
long | The missing. |
Name
Gets or sets the name of the result.
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | The name. |
Other
Gets the number of others for the facet.
Declaration
[JsonProperty("other")]
public long Other { get; set; }
Property Value
Type | Description |
---|---|
long | The other. |
Total
Gets the total number of hits for the facet.
Declaration
[JsonProperty("total")]
public long Total { get; set; }
Property Value
Type | Description |
---|---|
long | The total. |