Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3Webhook
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3Webhook
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
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.
Instance Attribute Summary collapse
-
#disabled ⇒ Boolean
(also: #disabled?)
Indicates whether the webhook is disabled.
-
#display_name ⇒ String
Required.
-
#generic_web_service ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookGenericWebService
Represents configuration for a generic web service.
-
#name ⇒ String
The unique identifier of the webhook.
-
#service_directory ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig
Represents configuration for a Service Directory service.
-
#timeout ⇒ String
Webhook execution timeout.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Webhook
constructor
A new instance of GoogleCloudDialogflowCxV3Webhook.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Webhook
Returns a new instance of GoogleCloudDialogflowCxV3Webhook.
2696 2697 2698 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2696 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disabled ⇒ Boolean Also known as: disabled?
Indicates whether the webhook is disabled.
Corresponds to the JSON property disabled
2663 2664 2665 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2663 def disabled @disabled end |
#display_name ⇒ String
Required. The human-readable name of the webhook, unique within the agent.
Corresponds to the JSON property displayName
2669 2670 2671 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2669 def display_name @display_name end |
#generic_web_service ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookGenericWebService
Represents configuration for a generic web service.
Corresponds to the JSON property genericWebService
2674 2675 2676 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2674 def generic_web_service @generic_web_service end |
#name ⇒ String
The unique identifier of the webhook. Required for the Webhooks.UpdateWebhook
method. Webhooks.CreateWebhook populates the name automatically. Format:
projects//locations//agents//webhooks/.
Corresponds to the JSON property name
2681 2682 2683 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2681 def name @name end |
#service_directory ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig
Represents configuration for a Service Directory service.
Corresponds to the JSON property serviceDirectory
2687 2688 2689 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2687 def service_directory @service_directory end |
#timeout ⇒ String
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.
Corresponds to the JSON property timeout
2694 2695 2696 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2694 def timeout @timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2701 2702 2703 2704 2705 2706 2707 2708 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2701 def update!(**args) @disabled = args[:disabled] if args.key?(:disabled) @display_name = args[:display_name] if args.key?(:display_name) @generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service) @name = args[:name] if args.key?(:name) @service_directory = args[:service_directory] if args.key?(:service_directory) @timeout = args[:timeout] if args.key?(:timeout) end |