Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v3/classes.rb,
generated/google/apis/dialogflow_v3/representations.rb,
generated/google/apis/dialogflow_v3/representations.rb
Overview
The source or target of a transition.
Instance Attribute Summary collapse
-
#flow ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Flow
Flows represents the conversation flows when you build your chatbot agent.
-
#page ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Page
A Dialogflow CX conversation (session) can be described and visualized as a state machine.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode
constructor
A new instance of GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode
Returns a new instance of GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode.
4034 4035 4036 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 4034 def initialize(**args) update!(**args) end |
Instance Attribute Details
#flow ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Flow
Flows represents the conversation flows when you build your chatbot agent. A
flow consists of many pages connected by the transition routes. Conversations
always start with the built-in Start Flow (with an all-0 ID). Transition
routes can direct the conversation session from the current flow (parent flow)
to another flow (sub flow). When the sub flow is finished, Dialogflow will
bring the session back to the parent flow, where the sub flow is started.
Usually, when a transition route is followed by a matched intent, the intent
will be "consumed". This means the intent won't activate more transition
routes. However, when the followed transition route moves the conversation
session into a different flow, the matched intent can be carried over and to
be consumed in the target flow.
Corresponds to the JSON property flow
4016 4017 4018 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 4016 def flow @flow end |
#page ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Page
A Dialogflow CX conversation (session) can be described and visualized as a
state machine. The states of a CX session are represented by pages. For each
flow, you define many pages, where your combined pages can handle a complete
conversation on the topics the flow is designed for. At any given moment,
exactly one page is the current page, the current page is considered active,
and the flow associated with that page is considered active. Every flow has a
special start page. When a flow initially becomes active, the start page page
becomes the current page. For each conversational turn, the current page will
either stay the same or transition to another page. You configure each page to
collect information from the end-user that is relevant for the conversational
state represented by the page. For more information, see the Page guide.
Corresponds to the JSON property page
4032 4033 4034 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 4032 def page @page end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4039 4040 4041 4042 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 4039 def update!(**args) @flow = args[:flow] if args.key?(:flow) @page = args[:page] if args.key?(:page) end |