Package-level declarations

Types

Link copied to clipboard
data class GetContextPlainArgs(val contextId: String, val environmentId: String, val location: String, val project: String? = null, val sessionId: String, val userId: String) : ConvertibleToJava<GetContextPlainArgs>
Link copied to clipboard
data class GetConversationDatasetPlainArgs(val conversationDatasetId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetConversationDatasetPlainArgs>
Link copied to clipboard
data class GetConversationModelPlainArgs(val conversationModelId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetConversationModelPlainArgs>
Link copied to clipboard
data class GetConversationPlainArgs(val conversationId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetConversationPlainArgs>
Link copied to clipboard
data class GetConversationProfilePlainArgs(val conversationProfileId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetConversationProfilePlainArgs>
Link copied to clipboard
data class GetDocumentPlainArgs(val documentId: String, val knowledgeBaseId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetDocumentPlainArgs>
Link copied to clipboard
data class GetEntityTypePlainArgs(val entityTypeId: String, val languageCode: String? = null, val location: String, val project: String? = null) : ConvertibleToJava<GetEntityTypePlainArgs>
Link copied to clipboard
data class GetEnvironmentPlainArgs(val environmentId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetEnvironmentPlainArgs>
Link copied to clipboard
data class GetEvaluationPlainArgs(val conversationModelId: String, val evaluationId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetEvaluationPlainArgs>
Link copied to clipboard
data class GetIntentPlainArgs(val intentId: String, val intentView: String? = null, val languageCode: String? = null, val location: String, val project: String? = null) : ConvertibleToJava<GetIntentPlainArgs>
Link copied to clipboard
Link copied to clipboard
data class GetKnowledgeBasePlainArgs(val knowledgeBaseId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetKnowledgeBasePlainArgs>
Link copied to clipboard
data class GetParticipantPlainArgs(val conversationId: String, val location: String, val participantId: String, val project: String? = null) : ConvertibleToJava<GetParticipantPlainArgs>
Link copied to clipboard
data class GetSessionEntityTypePlainArgs(val entityTypeId: String, val environmentId: String, val location: String, val project: String? = null, val sessionId: String, val userId: String) : ConvertibleToJava<GetSessionEntityTypePlainArgs>
Link copied to clipboard
data class GetVersionPlainArgs(val location: String, val project: String? = null, val versionId: String) : ConvertibleToJava<GetVersionPlainArgs>
data class GoogleCloudDialogflowV2ArticleSuggestionModelMetadataArgs(val trainingModelType: Output<GoogleCloudDialogflowV2ArticleSuggestionModelMetadataTrainingModelType>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2ArticleSuggestionModelMetadataArgs>

Metadata for article suggestion models.

data class GoogleCloudDialogflowV2AutomatedAgentConfigArgs(val agent: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2AutomatedAgentConfigArgs>

Defines the Automated Agent to connect to a conversation.

Link copied to clipboard
data class GoogleCloudDialogflowV2ContextArgs(val lifespanCount: Output<Int>? = null, val name: Output<String>, val parameters: Output<Map<String, String>>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2ContextArgs>

Dialogflow contexts are similar to natural language context. If a person says to you "they are orange", you need context in order to understand what "they" is referring to. Similarly, for Dialogflow to handle an end-user expression like that, it needs to be provided with context in order to correctly match an intent. Using contexts, you can control the flow of a conversation. You can configure contexts for an intent by setting input and output contexts, which are identified by string names. When an intent is matched, any configured output contexts for that intent become active. While any contexts are active, Dialogflow is more likely to match intents that are configured with input contexts that correspond to the currently active contexts. For more information about context, see the Contexts guide.

data class GoogleCloudDialogflowV2EntityTypeEntityArgs(val synonyms: Output<List<String>>, val value: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2EntityTypeEntityArgs>

An entity entry for an associated entity type.

data class GoogleCloudDialogflowV2EvaluationConfigArgs(val datasets: Output<List<GoogleCloudDialogflowV2InputDatasetArgs>>, val smartComposeConfig: Output<GoogleCloudDialogflowV2EvaluationConfigSmartComposeConfigArgs>? = null, val smartReplyConfig: Output<GoogleCloudDialogflowV2EvaluationConfigSmartReplyConfigArgs>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2EvaluationConfigArgs>

The configuration for model evaluation.

data class GoogleCloudDialogflowV2EvaluationConfigSmartComposeConfigArgs(val allowlistDocument: Output<String>? = null, val maxResultCount: Output<Int>) : ConvertibleToJava<GoogleCloudDialogflowV2EvaluationConfigSmartComposeConfigArgs>

Smart compose specific configuration for evaluation job.

data class GoogleCloudDialogflowV2EvaluationConfigSmartReplyConfigArgs(val allowlistDocument: Output<String>? = null, val maxResultCount: Output<Int>) : ConvertibleToJava<GoogleCloudDialogflowV2EvaluationConfigSmartReplyConfigArgs>

Smart reply specific configuration for evaluation job.

Link copied to clipboard
data class GoogleCloudDialogflowV2FulfillmentArgs(val displayName: Output<String>? = null, val enabled: Output<Boolean>? = null, val features: Output<List<GoogleCloudDialogflowV2FulfillmentFeatureArgs>>? = null, val genericWebService: Output<GoogleCloudDialogflowV2FulfillmentGenericWebServiceArgs>? = null, val name: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2FulfillmentArgs>

By default, your agent responds to a matched intent with a static response. As an alternative, you can provide a more dynamic response by using fulfillment. When you enable fulfillment for an intent, Dialogflow responds to that intent by calling a service that you define. For example, if an end-user wants to schedule a haircut on Friday, your service can check your database and respond to the end-user with availability information for Friday. For more information, see the fulfillment guide.

data class GoogleCloudDialogflowV2FulfillmentFeatureArgs(val type: Output<GoogleCloudDialogflowV2FulfillmentFeatureType>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2FulfillmentFeatureArgs>

Whether fulfillment is enabled for the specific feature.

data class GoogleCloudDialogflowV2FulfillmentGenericWebServiceArgs(val isCloudFunction: Output<Boolean>? = null, val password: Output<String>? = null, val requestHeaders: Output<Map<String, String>>? = null, val uri: Output<String>, val username: Output<String>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2FulfillmentGenericWebServiceArgs>

Represents configuration for a generic web service. Dialogflow supports two mechanisms for authentications: - Basic authentication with username and password. - Authentication with additional authentication headers. More information could be found at: https://cloud.google.com/dialogflow/docs/fulfillment-configure.

data class GoogleCloudDialogflowV2HumanAgentAssistantConfigArgs(val endUserSuggestionConfig: Output<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfigArgs>? = null, val humanAgentSuggestionConfig: Output<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfigArgs>? = null, val messageAnalysisConfig: Output<GoogleCloudDialogflowV2HumanAgentAssistantConfigMessageAnalysisConfigArgs>? = null, val notificationConfig: Output<GoogleCloudDialogflowV2NotificationConfigArgs>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentAssistantConfigArgs>

Defines the Human Agent Assist to connect to a conversation.

data class GoogleCloudDialogflowV2HumanAgentAssistantConfigConversationModelConfigArgs(val baselineModelVersion: Output<String>? = null, val model: Output<String>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentAssistantConfigConversationModelConfigArgs>

Custom conversation models used in agent assist feature. Supported feature: ARTICLE_SUGGESTION, SMART_COMPOSE, SMART_REPLY, CONVERSATION_SUMMARIZATION.

data class GoogleCloudDialogflowV2HumanAgentAssistantConfigConversationProcessConfigArgs(val recentSentencesCount: Output<Int>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentAssistantConfigConversationProcessConfigArgs>

Config to process conversation.

data class GoogleCloudDialogflowV2HumanAgentAssistantConfigMessageAnalysisConfigArgs(val enableEntityExtraction: Output<Boolean>? = null, val enableSentimentAnalysis: Output<Boolean>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentAssistantConfigMessageAnalysisConfigArgs>

Configuration for analyses to run on each conversation message.

data class GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfigArgs(val featureConfigs: Output<List<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionFeatureConfigArgs>>? = null, val groupSuggestionResponses: Output<Boolean>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfigArgs>

Detail human agent assistant config.

data class GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionFeatureConfigArgs(val conversationModelConfig: Output<GoogleCloudDialogflowV2HumanAgentAssistantConfigConversationModelConfigArgs>? = null, val conversationProcessConfig: Output<GoogleCloudDialogflowV2HumanAgentAssistantConfigConversationProcessConfigArgs>? = null, val enableEventBasedSuggestion: Output<Boolean>? = null, val queryConfig: Output<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigArgs>? = null, val suggestionFeature: Output<GoogleCloudDialogflowV2SuggestionFeatureArgs>? = null, val suggestionTriggerSettings: Output<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionTriggerSettingsArgs>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionFeatureConfigArgs>

Config for suggestion features.

data class GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigArgs(val confidenceThreshold: Output<Double>? = null, val contextFilterSettings: Output<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigContextFilterSettingsArgs>? = null, val dialogflowQuerySource: Output<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySourceArgs>? = null, val documentQuerySource: Output<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDocumentQuerySourceArgs>? = null, val knowledgeBaseQuerySource: Output<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigKnowledgeBaseQuerySourceArgs>? = null, val maxResults: Output<Int>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigArgs>

Config for suggestion query.

data class GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigContextFilterSettingsArgs(val dropHandoffMessages: Output<Boolean>? = null, val dropIvrMessages: Output<Boolean>? = null, val dropVirtualAgentMessages: Output<Boolean>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigContextFilterSettingsArgs>

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

data class GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySourceArgs(val agent: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySourceArgs>

Dialogflow source setting. Supported feature: DIALOGFLOW_ASSIST.

data class GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDocumentQuerySourceArgs(val documents: Output<List<String>>) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDocumentQuerySourceArgs>

Document source settings. Supported features: SMART_REPLY, SMART_COMPOSE.

data class GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigKnowledgeBaseQuerySourceArgs(val knowledgeBases: Output<List<String>>) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigKnowledgeBaseQuerySourceArgs>

Knowledge base source settings. Supported features: ARTICLE_SUGGESTION, FAQ.

data class GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionTriggerSettingsArgs(val noSmalltalk: Output<Boolean>? = null, val onlyEndUser: Output<Boolean>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionTriggerSettingsArgs>

Settings of suggestion trigger.

data class GoogleCloudDialogflowV2HumanAgentHandoffConfigArgs(val livePersonConfig: Output<GoogleCloudDialogflowV2HumanAgentHandoffConfigLivePersonConfigArgs>? = null, val salesforceLiveAgentConfig: Output<GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfigArgs>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentHandoffConfigArgs>

Defines the hand off to a live agent, typically on which external agent service provider to connect to a conversation. Currently, this feature is not general available, please contact Google to get access.

data class GoogleCloudDialogflowV2HumanAgentHandoffConfigLivePersonConfigArgs(val accountNumber: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentHandoffConfigLivePersonConfigArgs>

Configuration specific to LivePerson (https://www.liveperson.com).

data class GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfigArgs(val buttonId: Output<String>, val deploymentId: Output<String>, val endpointDomain: Output<String>, val organizationId: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfigArgs>

Configuration specific to Salesforce Live Agent.

Link copied to clipboard
data class GoogleCloudDialogflowV2InputDatasetArgs(val dataset: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2InputDatasetArgs>

InputDataset used to create model or do evaluation. NextID:5

Link copied to clipboard
data class GoogleCloudDialogflowV2IntentMessageArgs(val basicCard: Output<GoogleCloudDialogflowV2IntentMessageBasicCardArgs>? = null, val browseCarouselCard: Output<GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardArgs>? = null, val card: Output<GoogleCloudDialogflowV2IntentMessageCardArgs>? = null, val carouselSelect: Output<GoogleCloudDialogflowV2IntentMessageCarouselSelectArgs>? = null, val image: Output<GoogleCloudDialogflowV2IntentMessageImageArgs>? = null, val linkOutSuggestion: Output<GoogleCloudDialogflowV2IntentMessageLinkOutSuggestionArgs>? = null, val listSelect: Output<GoogleCloudDialogflowV2IntentMessageListSelectArgs>? = null, val mediaContent: Output<GoogleCloudDialogflowV2IntentMessageMediaContentArgs>? = null, val payload: Output<Map<String, String>>? = null, val platform: Output<GoogleCloudDialogflowV2IntentMessagePlatform>? = null, val quickReplies: Output<GoogleCloudDialogflowV2IntentMessageQuickRepliesArgs>? = null, val simpleResponses: Output<GoogleCloudDialogflowV2IntentMessageSimpleResponsesArgs>? = null, val suggestions: Output<GoogleCloudDialogflowV2IntentMessageSuggestionsArgs>? = null, val tableCard: Output<GoogleCloudDialogflowV2IntentMessageTableCardArgs>? = null, val text: Output<GoogleCloudDialogflowV2IntentMessageTextArgs>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageArgs>

A rich response message. Corresponds to the intent Response field in the Dialogflow console. For more information, see Rich response messages.

data class GoogleCloudDialogflowV2IntentMessageBasicCardArgs(val buttons: Output<List<GoogleCloudDialogflowV2IntentMessageBasicCardButtonArgs>>? = null, val formattedText: Output<String>? = null, val image: Output<GoogleCloudDialogflowV2IntentMessageImageArgs>? = null, val subtitle: Output<String>? = null, val title: Output<String>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageBasicCardArgs>

The basic card message. Useful for displaying information.

data class GoogleCloudDialogflowV2IntentMessageBasicCardButtonArgs(val openUriAction: Output<GoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriActionArgs>, val title: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageBasicCardButtonArgs>

The button object that appears at the bottom of a card.

data class GoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriActionArgs(val uri: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriActionArgs>

Opens the given URI.

data class GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardArgs(val imageDisplayOptions: Output<GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardImageDisplayOptions>? = null, val items: Output<List<GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemArgs>>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardArgs>

Browse Carousel Card for Actions on Google. https://developers.google.com/actions/assistant/responses#browsing_carousel

data class GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemArgs(val description: Output<String>? = null, val footer: Output<String>? = null, val image: Output<GoogleCloudDialogflowV2IntentMessageImageArgs>? = null, val openUriAction: Output<GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionArgs>, val title: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemArgs>

Browsing carousel tile

data class GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionArgs(val url: Output<String>, val urlTypeHint: Output<GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionUrlTypeHint>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionArgs>

Actions on Google action to open a given url.

data class GoogleCloudDialogflowV2IntentMessageCardArgs(val buttons: Output<List<GoogleCloudDialogflowV2IntentMessageCardButtonArgs>>? = null, val imageUri: Output<String>? = null, val subtitle: Output<String>? = null, val title: Output<String>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageCardArgs>

The card response message.

data class GoogleCloudDialogflowV2IntentMessageCardButtonArgs(val postback: Output<String>? = null, val text: Output<String>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageCardButtonArgs>

Contains information about a button.

data class GoogleCloudDialogflowV2IntentMessageCarouselSelectArgs(val items: Output<List<GoogleCloudDialogflowV2IntentMessageCarouselSelectItemArgs>>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageCarouselSelectArgs>

The card for presenting a carousel of options to select from.

data class GoogleCloudDialogflowV2IntentMessageCarouselSelectItemArgs(val description: Output<String>? = null, val image: Output<GoogleCloudDialogflowV2IntentMessageImageArgs>? = null, val info: Output<GoogleCloudDialogflowV2IntentMessageSelectItemInfoArgs>, val title: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageCarouselSelectItemArgs>

An item in the carousel.

data class GoogleCloudDialogflowV2IntentMessageColumnPropertiesArgs(val header: Output<String>, val horizontalAlignment: Output<GoogleCloudDialogflowV2IntentMessageColumnPropertiesHorizontalAlignment>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageColumnPropertiesArgs>

Column properties for TableCard.

data class GoogleCloudDialogflowV2IntentMessageImageArgs(val accessibilityText: Output<String>? = null, val imageUri: Output<String>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageImageArgs>

The image response message.

data class GoogleCloudDialogflowV2IntentMessageLinkOutSuggestionArgs(val destinationName: Output<String>, val uri: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageLinkOutSuggestionArgs>

The suggestion chip message that allows the user to jump out to the app or website associated with this agent.

data class GoogleCloudDialogflowV2IntentMessageListSelectArgs(val items: Output<List<GoogleCloudDialogflowV2IntentMessageListSelectItemArgs>>, val subtitle: Output<String>? = null, val title: Output<String>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageListSelectArgs>

The card for presenting a list of options to select from.

data class GoogleCloudDialogflowV2IntentMessageListSelectItemArgs(val description: Output<String>? = null, val image: Output<GoogleCloudDialogflowV2IntentMessageImageArgs>? = null, val info: Output<GoogleCloudDialogflowV2IntentMessageSelectItemInfoArgs>, val title: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageListSelectItemArgs>

An item in the list.

data class GoogleCloudDialogflowV2IntentMessageMediaContentArgs(val mediaObjects: Output<List<GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObjectArgs>>, val mediaType: Output<GoogleCloudDialogflowV2IntentMessageMediaContentMediaType>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageMediaContentArgs>

The media content card for Actions on Google.

data class GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObjectArgs(val contentUrl: Output<String>, val description: Output<String>? = null, val icon: Output<GoogleCloudDialogflowV2IntentMessageImageArgs>? = null, val largeImage: Output<GoogleCloudDialogflowV2IntentMessageImageArgs>? = null, val name: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObjectArgs>

Response media object for media content card.

data class GoogleCloudDialogflowV2IntentMessageQuickRepliesArgs(val quickReplies: Output<List<String>>? = null, val title: Output<String>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageQuickRepliesArgs>

The quick replies response message.

data class GoogleCloudDialogflowV2IntentMessageSelectItemInfoArgs(val key: Output<String>, val synonyms: Output<List<String>>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageSelectItemInfoArgs>

Additional info about the select item for when it is triggered in a dialog.

data class GoogleCloudDialogflowV2IntentMessageSimpleResponseArgs(val displayText: Output<String>? = null, val ssml: Output<String>? = null, val textToSpeech: Output<String>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageSimpleResponseArgs>

The simple response message containing speech or text.

data class GoogleCloudDialogflowV2IntentMessageSimpleResponsesArgs(val simpleResponses: Output<List<GoogleCloudDialogflowV2IntentMessageSimpleResponseArgs>>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageSimpleResponsesArgs>

The collection of simple response candidates. This message in QueryResult.fulfillment_messages and WebhookResponse.fulfillment_messages should contain only one SimpleResponse.

data class GoogleCloudDialogflowV2IntentMessageSuggestionArgs(val title: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageSuggestionArgs>

The suggestion chip message that the user can tap to quickly post a reply to the conversation.

data class GoogleCloudDialogflowV2IntentMessageSuggestionsArgs(val suggestions: Output<List<GoogleCloudDialogflowV2IntentMessageSuggestionArgs>>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageSuggestionsArgs>

The collection of suggestions.

data class GoogleCloudDialogflowV2IntentMessageTableCardArgs(val buttons: Output<List<GoogleCloudDialogflowV2IntentMessageBasicCardButtonArgs>>? = null, val columnProperties: Output<List<GoogleCloudDialogflowV2IntentMessageColumnPropertiesArgs>>? = null, val image: Output<GoogleCloudDialogflowV2IntentMessageImageArgs>? = null, val rows: Output<List<GoogleCloudDialogflowV2IntentMessageTableCardRowArgs>>? = null, val subtitle: Output<String>? = null, val title: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageTableCardArgs>

Table card for Actions on Google.

data class GoogleCloudDialogflowV2IntentMessageTableCardCellArgs(val text: Output<String>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageTableCardCellArgs>

Cell of TableCardRow.

data class GoogleCloudDialogflowV2IntentMessageTableCardRowArgs(val cells: Output<List<GoogleCloudDialogflowV2IntentMessageTableCardCellArgs>>? = null, val dividerAfter: Output<Boolean>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageTableCardRowArgs>

Row of TableCard.

data class GoogleCloudDialogflowV2IntentMessageTextArgs(val text: Output<List<String>>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentMessageTextArgs>

The text response message.

data class GoogleCloudDialogflowV2IntentParameterArgs(val defaultValue: Output<String>? = null, val displayName: Output<String>, val entityTypeDisplayName: Output<String>? = null, val isList: Output<Boolean>? = null, val mandatory: Output<Boolean>? = null, val name: Output<String>? = null, val prompts: Output<List<String>>? = null, val value: Output<String>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentParameterArgs>

Represents intent parameters.

data class GoogleCloudDialogflowV2IntentTrainingPhraseArgs(val parts: Output<List<GoogleCloudDialogflowV2IntentTrainingPhrasePartArgs>>, val timesAddedCount: Output<Int>? = null, val type: Output<GoogleCloudDialogflowV2IntentTrainingPhraseType>) : ConvertibleToJava<GoogleCloudDialogflowV2IntentTrainingPhraseArgs>

Represents an example that the agent is trained on.

data class GoogleCloudDialogflowV2IntentTrainingPhrasePartArgs(val alias: Output<String>? = null, val entityType: Output<String>? = null, val text: Output<String>, val userDefined: Output<Boolean>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentTrainingPhrasePartArgs>

Represents a part of a training phrase.

Link copied to clipboard
data class GoogleCloudDialogflowV2LoggingConfigArgs(val enableStackdriverLogging: Output<Boolean>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2LoggingConfigArgs>

Defines logging behavior for conversation lifecycle events.

data class GoogleCloudDialogflowV2NotificationConfigArgs(val messageFormat: Output<GoogleCloudDialogflowV2NotificationConfigMessageFormat>? = null, val topic: Output<String>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2NotificationConfigArgs>

Defines notification behavior.

data class GoogleCloudDialogflowV2SmartReplyModelMetadataArgs(val trainingModelType: Output<GoogleCloudDialogflowV2SmartReplyModelMetadataTrainingModelType>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2SmartReplyModelMetadataArgs>

Metadata for smart reply models.

data class GoogleCloudDialogflowV2SpeechToTextConfigArgs(val model: Output<String>? = null, val speechModelVariant: Output<GoogleCloudDialogflowV2SpeechToTextConfigSpeechModelVariant>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2SpeechToTextConfigArgs>

Configures speech transcription for ConversationProfile.

data class GoogleCloudDialogflowV2SuggestionFeatureArgs(val type: Output<GoogleCloudDialogflowV2SuggestionFeatureType>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2SuggestionFeatureArgs>

The type of Human Agent Assistant API suggestion to perform, and the maximum number of results to return for that type. Multiple Feature objects can be specified in the features list.

data class GoogleCloudDialogflowV2SynthesizeSpeechConfigArgs(val effectsProfileId: Output<List<String>>? = null, val pitch: Output<Double>? = null, val speakingRate: Output<Double>? = null, val voice: Output<GoogleCloudDialogflowV2VoiceSelectionParamsArgs>? = null, val volumeGainDb: Output<Double>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2SynthesizeSpeechConfigArgs>

Configuration of how speech should be synthesized.

data class GoogleCloudDialogflowV2TextToSpeechSettingsArgs(val enableTextToSpeech: Output<Boolean>? = null, val outputAudioEncoding: Output<GoogleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncoding>, val sampleRateHertz: Output<Int>? = null, val synthesizeSpeechConfigs: Output<Map<String, String>>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2TextToSpeechSettingsArgs>

Instructs the speech synthesizer on how to generate the output audio content.

data class GoogleCloudDialogflowV2VoiceSelectionParamsArgs(val name: Output<String>? = null, val ssmlGender: Output<GoogleCloudDialogflowV2VoiceSelectionParamsSsmlGender>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2VoiceSelectionParamsArgs>

Description of which voice to use for speech synthesis.