Class TransitionRoute (1.13.0)

TransitionRoute(mapping=None, *, ignore_unknown_fields=False, **kwargs)

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][google.cloud.dialogflow.cx.v3beta1.TransitionRoute.trigger_fulfillment] associated with the transition, it will be called.
  • If there is a [target_page][google.cloud.dialogflow.cx.v3beta1.TransitionRoute.target_page] associated with the transition, the session will transition into the specified page.
  • If there is a [target_flow][google.cloud.dialogflow.cx.v3beta1.TransitionRoute.target_flow] associated with the transition, the session will transition into the specified flow.

This message has oneof_ fields (mutually exclusive fields). For each oneof, at most one member field can be set at the same time. Setting any member of the oneof automatically clears all other members.

.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields

Attributes

NameDescription
name str
Output only. The unique identifier of this transition route.
intent str
The unique identifier of an Intent. Format: ``projects/
condition str
The condition to evaluate against [form parameters][google.cloud.dialogflow.cx.v3beta1.Form.parameters] or [session parameters][google.cloud.dialogflow.cx.v3beta1.SessionInfo.parameters]. See the `conditions reference
trigger_fulfillment google.cloud.dialogflowcx_v3beta1.types.Fulfillment
The fulfillment to call when the condition is satisfied. At least one of ``trigger_fulfillment`` and ``target`` must be specified. When both are defined, ``trigger_fulfillment`` is executed first.
target_page str
The target page to transition to. Format: ``projects/
target_flow str
The target flow to transition to. Format: ``projects/

Inheritance

builtins.object > proto.message.Message > TransitionRoute