Show / Hide Table of Contents

Class GoogleCloudDialogflowV2AnalyzeContentRequest

The request message for Participants.AnalyzeContent.

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

Properties

ETag

The ETag of the item.

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

EventInput

An input event to send to Dialogflow.

Declaration
[JsonProperty("eventInput")]
public virtual GoogleCloudDialogflowV2EventInput EventInput { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2EventInput

QueryParams

Parameters for a Dialogflow virtual-agent query.

Declaration
[JsonProperty("queryParams")]
public virtual GoogleCloudDialogflowV2QueryParameters QueryParams { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2QueryParameters

ReplyAudioConfig

Speech synthesis configuration. The speech synthesis settings for a virtual agent that may be configured for the associated conversation profile are not used when calling AnalyzeContent. If this configuration is not supplied, speech synthesis is disabled.

Declaration
[JsonProperty("replyAudioConfig")]
public virtual GoogleCloudDialogflowV2OutputAudioConfig ReplyAudioConfig { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2OutputAudioConfig

RequestId

A unique identifier for this request. Restricted to 36 ASCII characters. A random UUID is recommended. This request is only idempotent if a request_id is provided.

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

TextInput

The natural language text to be processed.

Declaration
[JsonProperty("textInput")]
public virtual GoogleCloudDialogflowV2TextInput TextInput { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2TextInput

Implements

IDirectResponseSchema
In This Article
Back to top