Dialogflow CX V3 API - Class Google::Cloud::Dialogflow::CX::V3::Page (v0.10.1)

Reference documentation and code samples for the Dialogflow CX V3 API class Google::Cloud::Dialogflow::CX::V3::Page.

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.

Inherits

  • Object

Extended By

  • Google::Protobuf::MessageExts::ClassMethods

Includes

  • Google::Protobuf::MessageExts

Methods

#display_name

def display_name() -> ::String
Returns
  • (::String) — Required. The human-readable name of the page, unique within the flow.

#display_name=

def display_name=(value) -> ::String
Parameter
  • value (::String) — Required. The human-readable name of the page, unique within the flow.
Returns
  • (::String) — Required. The human-readable name of the page, unique within the flow.

#entry_fulfillment

def entry_fulfillment() -> ::Google::Cloud::Dialogflow::CX::V3::Fulfillment
Returns

#entry_fulfillment=

def entry_fulfillment=(value) -> ::Google::Cloud::Dialogflow::CX::V3::Fulfillment
Parameter
Returns

#event_handlers

def event_handlers() -> ::Array<::Google::Cloud::Dialogflow::CX::V3::EventHandler>
Returns

#event_handlers=

def event_handlers=(value) -> ::Array<::Google::Cloud::Dialogflow::CX::V3::EventHandler>
Parameter
Returns

#form

def form() -> ::Google::Cloud::Dialogflow::CX::V3::Form
Returns

#form=

def form=(value) -> ::Google::Cloud::Dialogflow::CX::V3::Form
Parameter
Returns

#name

def name() -> ::String
Returns
  • (::String) — The unique identifier of the page. Required for the Pages.UpdatePage method. Pages.CreatePage populates the name automatically. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>.

#name=

def name=(value) -> ::String
Parameter
  • value (::String) — The unique identifier of the page. Required for the Pages.UpdatePage method. Pages.CreatePage populates the name automatically. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>.
Returns
  • (::String) — The unique identifier of the page. Required for the Pages.UpdatePage method. Pages.CreatePage populates the name automatically. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>.

#transition_route_groups

def transition_route_groups() -> ::Array<::String>
Returns
  • (::Array<::String>) — Ordered list of TransitionRouteGroups associated with the page. Transition route groups must be unique within a page.

    • If multiple transition routes within a page scope refer to the same intent, then the precedence order is: page's transition route -> page's transition route group -> flow's transition routes.

    • If multiple transition route groups within a page contain the same intent, then the first group in the ordered list takes precedence.

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

#transition_route_groups=

def transition_route_groups=(value) -> ::Array<::String>
Parameter
  • value (::Array<::String>) — Ordered list of TransitionRouteGroups associated with the page. Transition route groups must be unique within a page.

    • If multiple transition routes within a page scope refer to the same intent, then the precedence order is: page's transition route -> page's transition route group -> flow's transition routes.

    • If multiple transition route groups within a page contain the same intent, then the first group in the ordered list takes precedence.

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

Returns
  • (::Array<::String>) — Ordered list of TransitionRouteGroups associated with the page. Transition route groups must be unique within a page.

    • If multiple transition routes within a page scope refer to the same intent, then the precedence order is: page's transition route -> page's transition route group -> flow's transition routes.

    • If multiple transition route groups within a page contain the same intent, then the first group in the ordered list takes precedence.

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

#transition_routes

def transition_routes() -> ::Array<::Google::Cloud::Dialogflow::CX::V3::TransitionRoute>
Returns
  • (::Array<::Google::Cloud::Dialogflow::CX::V3::TransitionRoute>) —

    A list of transitions for the transition rules of this page. They route the conversation to another page in the same flow, or another flow.

    When we are in a certain page, the TransitionRoutes are evalauted in the following order:

    • TransitionRoutes defined in the page with intent specified.
    • TransitionRoutes defined in the transition route groups with intent specified.
    • TransitionRoutes defined in flow with intent specified.
    • TransitionRoutes defined in the transition route groups with intent specified.
    • TransitionRoutes defined in the page with only condition specified.
    • TransitionRoutes defined in the transition route groups with only condition specified.

#transition_routes=

def transition_routes=(value) -> ::Array<::Google::Cloud::Dialogflow::CX::V3::TransitionRoute>
Parameter
  • value (::Array<::Google::Cloud::Dialogflow::CX::V3::TransitionRoute>) —

    A list of transitions for the transition rules of this page. They route the conversation to another page in the same flow, or another flow.

    When we are in a certain page, the TransitionRoutes are evalauted in the following order:

    • TransitionRoutes defined in the page with intent specified.
    • TransitionRoutes defined in the transition route groups with intent specified.
    • TransitionRoutes defined in flow with intent specified.
    • TransitionRoutes defined in the transition route groups with intent specified.
    • TransitionRoutes defined in the page with only condition specified.
    • TransitionRoutes defined in the transition route groups with only condition specified.
Returns
  • (::Array<::Google::Cloud::Dialogflow::CX::V3::TransitionRoute>) —

    A list of transitions for the transition rules of this page. They route the conversation to another page in the same flow, or another flow.

    When we are in a certain page, the TransitionRoutes are evalauted in the following order:

    • TransitionRoutes defined in the page with intent specified.
    • TransitionRoutes defined in the transition route groups with intent specified.
    • TransitionRoutes defined in flow with intent specified.
    • TransitionRoutes defined in the transition route groups with intent specified.
    • TransitionRoutes defined in the page with only condition specified.
    • TransitionRoutes defined in the transition route groups with only condition specified.