Show / Hide Table of Contents

Class GoogleCloudDialogflowV2AnalyzeContentResponse

The response message for Participants.AnalyzeContent.

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

Properties

AutomatedAgentReply

Only set if a Dialogflow automated agent has responded. Note that: AutomatedAgentReply.detect_intent_response.output_audio and AutomatedAgentReply.detect_intent_response.output_audio_config are always empty, use reply_audio instead.

Declaration
[JsonProperty("automatedAgentReply")]
public virtual GoogleCloudDialogflowV2AutomatedAgentReply AutomatedAgentReply { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2AutomatedAgentReply

DtmfParameters

Indicates the parameters of DTMF.

Declaration
[JsonProperty("dtmfParameters")]
public virtual GoogleCloudDialogflowV2DtmfParameters DtmfParameters { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2DtmfParameters

EndUserSuggestionResults

The suggestions for end user. The order is the same as HumanAgentAssistantConfig.SuggestionConfig.feature_configs of HumanAgentAssistantConfig.end_user_suggestion_config.

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

ETag

The ETag of the item.

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

HumanAgentSuggestionResults

The suggestions for most recent human agent. The order is the same as HumanAgentAssistantConfig.SuggestionConfig.feature_configs of HumanAgentAssistantConfig.human_agent_suggestion_config.

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

Message

Message analyzed by CCAI.

Declaration
[JsonProperty("message")]
public virtual GoogleCloudDialogflowV2Message Message { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2Message

ReplyAudio

The audio data bytes encoded as specified in the request. This field is set if: - reply_audio_config was specified in the request, or - The automated agent responded with audio to play to the user. In such case, reply_audio.config contains settings used to synthesize the speech. In some scenarios, multiple output audio fields may be present in the response structure. In these cases, only the top-most-level audio output has content.

Declaration
[JsonProperty("replyAudio")]
public virtual GoogleCloudDialogflowV2OutputAudio ReplyAudio { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2OutputAudio

ReplyText

The output text content. This field is set if the automated agent responded with text to show to the user.

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

Implements

IDirectResponseSchema
In This Article
Back to top