Class Webhook (0.1.1)

Webhook(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Webhooks host the developer's business logic. During a session, webhooks allow the developer to use the data extracted by Dialogflow's natural language processing to generate dynamic responses, validate collected data, or trigger actions on the backend.

Attributes

NameDescription
name str
The unique identifier of the webhook. Required for the Webhooks.UpdateWebhook method. Webhooks.CreateWebhook populates the name automatically. Format: projects/.
display_name str
Required. The human-readable name of the webhook, unique within the agent.
generic_web_service .gcdc_webhook.Webhook.GenericWebService
Configuration for a generic web service.
timeout .duration.Duration
Webhook execution timeout. Execution is considered failed if Dialogflow doesn't receive a response from webhook at the end of the timeout period. Defaults to 5 seconds, maximum allowed timeout is 30 seconds.
disabled bool
Indicates whether the webhook is disabled.

Classes

GenericWebService

GenericWebService(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Represents configuration for a generic web service.