Class SuggestResult
One suggestion result.
Implements
Inherited Members
Namespace: Google.Apis.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class SuggestResult : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
PeopleSuggestion
This is present when the suggestion indicates a person. It contains more information about the person - like their email ID, name etc.
Declaration
[JsonProperty("peopleSuggestion")]
public virtual PeopleSuggestion PeopleSuggestion { get; set; }
Property Value
Type | Description |
---|---|
PeopleSuggestion |
QuerySuggestion
This field will be present if the suggested query is a word/phrase completion.
Declaration
[JsonProperty("querySuggestion")]
public virtual QuerySuggestion QuerySuggestion { get; set; }
Property Value
Type | Description |
---|---|
QuerySuggestion |
Source
The source of the suggestion.
Declaration
[JsonProperty("source")]
public virtual Source Source { get; set; }
Property Value
Type | Description |
---|---|
Source |
SuggestedQuery
The suggested query that will be used for search, when the user clicks on the suggestion
Declaration
[JsonProperty("suggestedQuery")]
public virtual string SuggestedQuery { get; set; }
Property Value
Type | Description |
---|---|
string |