View Source GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3Flow (google_api_dialogflow v0.74.0)

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.

Attributes

  • description (type: String.t, default: nil) - The description of the flow. The maximum length is 500 characters. If exceeded, the request is rejected.
  • displayName (type: String.t, default: nil) - Required. The human-readable name of the flow.
  • eventHandlers (type: list(GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3EventHandler.t), default: nil) - A flow's event handlers serve two purposes: They are responsible for handling events (e.g. no match, webhook errors) in the flow. They are inherited by every page's event handlers, which can be used to handle common events regardless of the current page. Event handlers defined in the page have higher priority than those defined in the flow. Unlike transition_routes, these handlers are evaluated on a first-match basis. The first one that matches the event get executed, with the rest being ignored.
  • name (type: String.t, default: nil) - The unique identifier of the flow. Format: projects//locations//agents//flows/.
  • nluSettings (type: GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3NluSettings.t, default: nil) - NLU related settings of the flow.
  • transitionRouteGroups (type: list(String.t), default: nil) - A flow's transition route group serve two purposes: They are responsible for matching the user's first utterances in the flow. They are inherited by every page's transition route groups. Transition route groups defined in the page have higher priority than those defined in the flow. Format:projects//locations//agents//flows//transitionRouteGroups/.
  • transitionRoutes (type: list(GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3TransitionRoute.t), default: nil) - 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.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Specs

t() :: %GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3Flow{
  description: String.t() | nil,
  displayName: String.t() | nil,
  eventHandlers:
    [GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3EventHandler.t()]
    | nil,
  name: String.t() | nil,
  nluSettings:
    GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3NluSettings.t() | nil,
  transitionRouteGroups: [String.t()] | nil,
  transitionRoutes:
    [GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3TransitionRoute.t()]
    | nil
}

Link to this section Functions

Specs

decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.