Show / Hide Table of Contents

Class GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse

The simple response message containing speech or text.

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

Properties

DisplayText

Optional. The text to display.

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

ETag

The ETag of the item.

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

Ssml

One of text_to_speech or ssml must be provided. Structured spoken response to the user in the SSML format. Mutually exclusive with text_to_speech.

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

TextToSpeech

One of text_to_speech or ssml must be provided. The plain text of the speech output. Mutually exclusive with ssml.

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

Implements

IDirectResponseSchema
In This Article
Back to top