Show / Hide Table of Contents

Class GoogleCloudDialogflowV2beta1SuggestionInput

Represents the selection of a suggestion.

Inheritance
object
GoogleCloudDialogflowV2beta1SuggestionInput
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dialogflow.v2beta1.Data
Assembly: Google.Apis.Dialogflow.v2beta1.dll
Syntax
public class GoogleCloudDialogflowV2beta1SuggestionInput : IDirectResponseSchema

Properties

AnswerRecord

Required. The ID of a suggestion selected by the human agent. The suggestion(s) were generated in a previous call to request Dialogflow assist. The format is: projects//locations//answerRecords/ where is an alphanumeric string.

Declaration
[JsonProperty("answerRecord")]
public virtual string AnswerRecord { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

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

IntentInput

The intent to be triggered on V3 agent.

Declaration
[JsonProperty("intentInput")]
public virtual GoogleCloudDialogflowV2beta1IntentInput IntentInput { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2beta1IntentInput

Parameters

In Dialogflow assist for v3, the user can submit a form by sending a SuggestionInput. The form is uniquely determined by the answer_record field, which identifies a v3 QueryResult containing the current page. The form parameters are specified via the parameters field. Depending on your protocol or client library language, this is a map, associative array, symbol table, dictionary, or JSON object composed of a collection of (MapKey, MapValue) pairs: * MapKey type: string * MapKey value: parameter name * MapValue type: If parameter's entity type is a composite entity then use map, otherwise, depending on the parameter value type, it could be one of string, number, boolean, null, list or map. * MapValue value: If parameter's entity type is a composite entity then use map from composite entity property names to property values, otherwise, use parameter value.

Declaration
[JsonProperty("parameters")]
public virtual IDictionary<string, object> Parameters { get; set; }
Property Value
Type Description
IDictionary<string, object>

TextOverride

Optional. If the customer edited the suggestion before using it, include the revised text here.

Declaration
[JsonProperty("textOverride")]
public virtual GoogleCloudDialogflowV2beta1TextInput TextOverride { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2beta1TextInput

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX