Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Fulfillment
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Fulfillment
- 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
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.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Optional.
-
#enabled ⇒ Boolean
(also: #enabled?)
Optional.
-
#features ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2FulfillmentFeature>
Optional.
-
#generic_web_service ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2FulfillmentGenericWebService
Represents configuration for a generic web service.
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2Fulfillment
constructor
A new instance of GoogleCloudDialogflowV2Fulfillment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2Fulfillment
Returns a new instance of GoogleCloudDialogflowV2Fulfillment.
6487 6488 6489 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6487 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Optional. The human-readable name of the fulfillment, unique within the agent.
Corresponds to the JSON property displayName
6458 6459 6460 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6458 def display_name @display_name end |
#enabled ⇒ Boolean Also known as: enabled?
Optional. Whether fulfillment is enabled.
Corresponds to the JSON property enabled
6463 6464 6465 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6463 def enabled @enabled end |
#features ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2FulfillmentFeature>
Optional. The field defines whether the fulfillment is enabled for certain
features.
Corresponds to the JSON property features
6470 6471 6472 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6470 def features @features end |
#generic_web_service ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2FulfillmentGenericWebService
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.
Corresponds to the JSON property genericWebService
6479 6480 6481 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6479 def generic_web_service @generic_web_service end |
#name ⇒ String
Required. The unique identifier of the fulfillment. Format: projects//agent/
fulfillment.
Corresponds to the JSON property name
6485 6486 6487 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6485 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6492 6493 6494 6495 6496 6497 6498 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6492 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @enabled = args[:enabled] if args.key?(:enabled) @features = args[:features] if args.key?(:features) @generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service) @name = args[:name] if args.key?(:name) end |