Show / Hide Table of Contents

Class GoogleCloudDialogflowV2ConversationProfile

Defines the services to connect to incoming Dialogflow conversations.

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

Properties

AutomatedAgentConfig

Configuration for an automated agent to use with this profile.

Declaration
[JsonProperty("automatedAgentConfig")]
public virtual GoogleCloudDialogflowV2AutomatedAgentConfig AutomatedAgentConfig { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2AutomatedAgentConfig

CreateTime

Output only. Create time of the conversation profile.

Declaration
[JsonProperty("createTime")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
System.Object

DisplayName

Required. Human readable name for this profile. Max length 1024 bytes.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { 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

HumanAgentAssistantConfig

Configuration for agent assistance to use with this profile.

Declaration
[JsonProperty("humanAgentAssistantConfig")]
public virtual GoogleCloudDialogflowV2HumanAgentAssistantConfig HumanAgentAssistantConfig { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2HumanAgentAssistantConfig

HumanAgentHandoffConfig

Configuration for connecting to a live agent. Currently, this feature is not general available, please contact Google to get access.

Declaration
[JsonProperty("humanAgentHandoffConfig")]
public virtual GoogleCloudDialogflowV2HumanAgentHandoffConfig HumanAgentHandoffConfig { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2HumanAgentHandoffConfig

LanguageCode

Language which represents the conversationProfile. If unspecified, the default language code en-us applies. Users need to create a ConversationProfile for each language they want to support.

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

LoggingConfig

Configuration for logging conversation lifecycle events.

Declaration
[JsonProperty("loggingConfig")]
public virtual GoogleCloudDialogflowV2LoggingConfig LoggingConfig { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2LoggingConfig

Name

The unique identifier of this conversation profile. Format: projects//locations//conversationProfiles/.

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

NewMessageEventNotificationConfig

Configuration for publishing new message events. Event will be sent in format of ConversationEvent

Declaration
[JsonProperty("newMessageEventNotificationConfig")]
public virtual GoogleCloudDialogflowV2NotificationConfig NewMessageEventNotificationConfig { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2NotificationConfig

NotificationConfig

Configuration for publishing conversation lifecycle events.

Declaration
[JsonProperty("notificationConfig")]
public virtual GoogleCloudDialogflowV2NotificationConfig NotificationConfig { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2NotificationConfig

SttConfig

Settings for speech transcription.

Declaration
[JsonProperty("sttConfig")]
public virtual GoogleCloudDialogflowV2SpeechToTextConfig SttConfig { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2SpeechToTextConfig

UpdateTime

Output only. Update time of the conversation profile.

Declaration
[JsonProperty("updateTime")]
public virtual object UpdateTime { get; set; }
Property Value
Type Description
System.Object

Implements

IDirectResponseSchema
In This Article
Back to top