Google Cloud Dialogflow Cx V3 Client - Class Flow (0.1.1)

Reference documentation and code samples for the Google Cloud Dialogflow Cx V3 Client class Flow.

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.

Generated from protobuf message google.cloud.dialogflow.cx.v3.Flow

Namespace

Google \ Cloud \ Dialogflow \ Cx \ V3

Methods

__construct

Constructor.

Parameters
NameDescription
data array

Optional. Data for populating the Message object.

↳ name string

The unique identifier of the flow. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>.

↳ display_name string

Required. The human-readable name of the flow.

↳ description string

The description of the flow. The maximum length is 500 characters. If exceeded, the request is rejected.

↳ transition_routes array<Google\Cloud\Dialogflow\Cx\V3\TransitionRoute>

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.

↳ event_handlers array<Google\Cloud\Dialogflow\Cx\V3\EventHandler>

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.

↳ transition_route_groups array

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/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/transitionRouteGroups/<TransitionRouteGroup ID> or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/transitionRouteGroups/<TransitionRouteGroup ID> for agent-level groups.

↳ nlu_settings Google\Cloud\Dialogflow\Cx\V3\NluSettings

NLU related settings of the flow.

↳ advanced_settings Google\Cloud\Dialogflow\Cx\V3\AdvancedSettings

Hierarchical advanced settings for this flow. The settings exposed at the lower level overrides the settings exposed at the higher level.

↳ knowledge_connector_settings Google\Cloud\Dialogflow\Cx\V3\KnowledgeConnectorSettings

Optional. Knowledge connector configuration.

getName

The unique identifier of the flow.

Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>.

Returns
TypeDescription
string

setName

The unique identifier of the flow.

Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>.

Parameter
NameDescription
var string
Returns
TypeDescription
$this

getDisplayName

Required. The human-readable name of the flow.

Returns
TypeDescription
string

setDisplayName

Required. The human-readable name of the flow.

Parameter
NameDescription
var string
Returns
TypeDescription
$this

getDescription

The description of the flow. The maximum length is 500 characters. If exceeded, the request is rejected.

Returns
TypeDescription
string

setDescription

The description of the flow. The maximum length is 500 characters. If exceeded, the request is rejected.

Parameter
NameDescription
var string
Returns
TypeDescription
$this

getTransitionRoutes

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.
Returns
TypeDescription
Google\Protobuf\Internal\RepeatedField

setTransitionRoutes

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.
Parameter
NameDescription
var array<Google\Cloud\Dialogflow\Cx\V3\TransitionRoute>
Returns
TypeDescription
$this

getEventHandlers

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.

Returns
TypeDescription
Google\Protobuf\Internal\RepeatedField

setEventHandlers

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.

Parameter
NameDescription
var array<Google\Cloud\Dialogflow\Cx\V3\EventHandler>
Returns
TypeDescription
$this

getTransitionRouteGroups

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/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/transitionRouteGroups/<TransitionRouteGroup ID> or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/transitionRouteGroups/<TransitionRouteGroup ID> for agent-level groups.

Returns
TypeDescription
Google\Protobuf\Internal\RepeatedField

setTransitionRouteGroups

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/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/transitionRouteGroups/<TransitionRouteGroup ID> or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/transitionRouteGroups/<TransitionRouteGroup ID> for agent-level groups.

Parameter
NameDescription
var string[]
Returns
TypeDescription
$this

getNluSettings

NLU related settings of the flow.

Returns
TypeDescription
Google\Cloud\Dialogflow\Cx\V3\NluSettings|null

hasNluSettings

clearNluSettings

setNluSettings

NLU related settings of the flow.

Parameter
NameDescription
var Google\Cloud\Dialogflow\Cx\V3\NluSettings
Returns
TypeDescription
$this

getAdvancedSettings

Hierarchical advanced settings for this flow. The settings exposed at the lower level overrides the settings exposed at the higher level.

Returns
TypeDescription
Google\Cloud\Dialogflow\Cx\V3\AdvancedSettings|null

hasAdvancedSettings

clearAdvancedSettings

setAdvancedSettings

Hierarchical advanced settings for this flow. The settings exposed at the lower level overrides the settings exposed at the higher level.

Parameter
NameDescription
var Google\Cloud\Dialogflow\Cx\V3\AdvancedSettings
Returns
TypeDescription
$this

getKnowledgeConnectorSettings

Optional. Knowledge connector configuration.

Returns
TypeDescription
Google\Cloud\Dialogflow\Cx\V3\KnowledgeConnectorSettings|null

hasKnowledgeConnectorSettings

clearKnowledgeConnectorSettings

setKnowledgeConnectorSettings

Optional. Knowledge connector configuration.

Parameter
NameDescription
var Google\Cloud\Dialogflow\Cx\V3\KnowledgeConnectorSettings
Returns
TypeDescription
$this