transitionRoutes property

List<GoogleCloudDialogflowCxV3TransitionRoute>? transitionRoutes
getter/setter pair

A flow's transition routes serve two purposes: * They are responsible for matching the user's first utterances in the flow.

  • They are inherited by every page's transition routes and can support use cases such as the user saying "help" or "can I talk to a human?", which can be handled in a common way regardless of the current page. Transition routes defined in the page have higher priority than those defined in the flow. TransitionRoutes are evalauted in the following order: * TransitionRoutes with intent specified. * TransitionRoutes with only condition specified. TransitionRoutes with intent specified are inherited by pages in the flow.

Implementation

core.List<GoogleCloudDialogflowCxV3TransitionRoute>? transitionRoutes;