Show / Hide Table of Contents

Class GoogleCloudDialogflowV2SuggestionResult

One response of different type of suggestion response which is used in the response of Participants.AnalyzeContent and Participants.AnalyzeContent, as well as HumanAgentAssistantEvent.

Inheritance
System.Object
GoogleCloudDialogflowV2SuggestionResult
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.Dialogflow.v2.Data
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class GoogleCloudDialogflowV2SuggestionResult : IDirectResponseSchema

Properties

Error

Error status if the request failed.

Declaration
[JsonProperty("error")]
public virtual GoogleRpcStatus Error { get; set; }
Property Value
Type Description
GoogleRpcStatus

ETag

The ETag of the item.

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

SuggestArticlesResponse

SuggestArticlesResponse if request is for ARTICLE_SUGGESTION.

Declaration
[JsonProperty("suggestArticlesResponse")]
public virtual GoogleCloudDialogflowV2SuggestArticlesResponse SuggestArticlesResponse { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2SuggestArticlesResponse

SuggestFaqAnswersResponse

SuggestFaqAnswersResponse if request is for FAQ_ANSWER.

Declaration
[JsonProperty("suggestFaqAnswersResponse")]
public virtual GoogleCloudDialogflowV2SuggestFaqAnswersResponse SuggestFaqAnswersResponse { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2SuggestFaqAnswersResponse

Implements

IDirectResponseSchema
In This Article
Back to top