Show / Hide Table of Contents

Class GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigContextFilterSettings

Settings that determine how to filter recent conversation context when generating suggestions.

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

Properties

DropHandoffMessages

If set to true, the last message from virtual agent (hand off message) and the message before it (trigger message of hand off) are dropped.

Declaration
[JsonProperty("dropHandoffMessages")]
public virtual bool? DropHandoffMessages { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

DropIvrMessages

If set to true, all messages from ivr stage are dropped.

Declaration
[JsonProperty("dropIvrMessages")]
public virtual bool? DropIvrMessages { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

DropVirtualAgentMessages

If set to true, all messages from virtual agent are dropped.

Declaration
[JsonProperty("dropVirtualAgentMessages")]
public virtual bool? DropVirtualAgentMessages { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

Implements

IDirectResponseSchema
In This Article
Back to top