Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3TransitionRoute
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3TransitionRoute
- 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
A transition route specifies a intent that can be matched and/or a data
condition that can be evaluated during a session. When a specified transition
is matched, the following actions are taken in order: * If there is a
trigger_fulfillment associated with the transition, it will be called. * If
there is a target_page associated with the transition, the session will
transition into the specified page. * If there is a target_flow associated
with the transition, the session will transition into the specified flow.
Instance Attribute Summary collapse
-
#condition ⇒ String
The condition to evaluate against form parameters or session parameters.
-
#description ⇒ String
Optional.
-
#intent ⇒ String
The unique identifier of an Intent.
-
#name ⇒ String
Output only.
-
#target_flow ⇒ String
The target flow to transition to.
-
#target_page ⇒ String
The target page to transition to.
-
#trigger_fulfillment ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3Fulfillment
A fulfillment can do one or more of the following actions at the same time: * Generate rich message responses.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TransitionRoute
constructor
A new instance of GoogleCloudDialogflowCxV3TransitionRoute.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TransitionRoute
Returns a new instance of GoogleCloudDialogflowCxV3TransitionRoute.
3287 3288 3289 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3287 def initialize(**args) update!(**args) end |
Instance Attribute Details
#condition ⇒ String
The condition to evaluate against form parameters or session parameters. See
the conditions reference. At least one of intent or condition must be
specified. When both intent and condition are specified, the transition
can only happen when both are fulfilled.
Corresponds to the JSON property condition
3242 3243 3244 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3242 def condition @condition end |
#description ⇒ String
Optional. The description of the transition route. The maximum length is 500
characters.
Corresponds to the JSON property description
3248 3249 3250 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3248 def description @description end |
#intent ⇒ String
The unique identifier of an Intent. Format: projects//locations//agents//
intents/. Indicates that the transition can only happen when the given intent
is matched. At least one of intent or condition must be specified. When
both intent and condition are specified, the transition can only happen
when both are fulfilled.
Corresponds to the JSON property intent
3257 3258 3259 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3257 def intent @intent end |
#name ⇒ String
Output only. The unique identifier of this transition route.
Corresponds to the JSON property name
3262 3263 3264 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3262 def name @name end |
#target_flow ⇒ String
The target flow to transition to. Format: projects//locations//agents//flows/
.
Corresponds to the JSON property targetFlow
3268 3269 3270 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3268 def target_flow @target_flow end |
#target_page ⇒ String
The target page to transition to. Format: projects//locations//agents//flows//
pages/.
Corresponds to the JSON property targetPage
3274 3275 3276 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3274 def target_page @target_page end |
#trigger_fulfillment ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3Fulfillment
A fulfillment can do one or more of the following actions at the same time: *
Generate rich message responses. * Set parameter values. * Call the webhook.
Fulfillments can be called at various stages in the Page or Form lifecycle.
For example, when a DetectIntentRequest drives a session to enter a new page,
the page's entry fulfillment can add a static response to the QueryResult in
the returning DetectIntentResponse, call the webhook (for example, to load
user data from a database), or both.
Corresponds to the JSON property triggerFulfillment
3285 3286 3287 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3285 def trigger_fulfillment @trigger_fulfillment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3292 3293 3294 3295 3296 3297 3298 3299 3300 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3292 def update!(**args) @condition = args[:condition] if args.key?(:condition) @description = args[:description] if args.key?(:description) @intent = args[:intent] if args.key?(:intent) @name = args[:name] if args.key?(:name) @target_flow = args[:target_flow] if args.key?(:target_flow) @target_page = args[:target_page] if args.key?(:target_page) @trigger_fulfillment = args[:trigger_fulfillment] if args.key?(:trigger_fulfillment) end |