Class SuggestResult
One suggestion result.
Inheritance
System.Object
SuggestResult
Implements
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 SuggestResult : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.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 |
|---|---|
| System.String |