Class GoogleCloudDialogflowCxV3Page
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.
Implements
Inherited Members
Namespace: Google.Apis.Dialogflow.v3beta1.Data
Assembly: Google.Apis.Dialogflow.v3beta1.dll
Syntax
public class GoogleCloudDialogflowCxV3Page : IDirectResponseSchema
Properties
AdvancedSettings
Hierarchical advanced settings for this page. The settings exposed at the lower level overrides the settings exposed at the higher level.
Declaration
[JsonProperty("advancedSettings")]
public virtual GoogleCloudDialogflowCxV3AdvancedSettings AdvancedSettings { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3AdvancedSettings |
Description
The description of the page. The maximum length is 500 characters.
Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
DisplayName
Required. The human-readable name of the page, unique within the flow.
Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EntryFulfillment
The fulfillment to call when the session is entering the page.
Declaration
[JsonProperty("entryFulfillment")]
public virtual GoogleCloudDialogflowCxV3Fulfillment EntryFulfillment { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3Fulfillment |
EventHandlers
Handlers associated with the page to handle events such as webhook errors, no match or no input.
Declaration
[JsonProperty("eventHandlers")]
public virtual IList<GoogleCloudDialogflowCxV3EventHandler> EventHandlers { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudDialogflowCxV3EventHandler> |
Form
The form associated with the page, used for collecting parameters relevant to the page.
Declaration
[JsonProperty("form")]
public virtual GoogleCloudDialogflowCxV3Form Form { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3Form |
KnowledgeConnectorSettings
Optional. Knowledge connector configuration.
Declaration
[JsonProperty("knowledgeConnectorSettings")]
public virtual GoogleCloudDialogflowCxV3KnowledgeConnectorSettings KnowledgeConnectorSettings { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3KnowledgeConnectorSettings |
Name
The unique identifier of the page. Required for the Pages.UpdatePage method. Pages.CreatePage populates the
name automatically. Format: projects//locations//agents//flows//pages/
.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
TransitionRouteGroups
Ordered list of TransitionRouteGroups
added to the page. Transition route groups must be unique within a
page. If the page links both flow-level transition route groups and agent-level transition route groups, the
flow-level ones will have higher priority and will be put before the agent-level ones. * 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//locations//agents//flows//transitionRouteGroups/
or
projects//locations//agents//transitionRouteGroups/
for agent-level groups.
Declaration
[JsonProperty("transitionRouteGroups")]
public virtual IList<string> TransitionRouteGroups { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
TransitionRoutes
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.
Declaration
[JsonProperty("transitionRoutes")]
public virtual IList<GoogleCloudDialogflowCxV3TransitionRoute> TransitionRoutes { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudDialogflowCxV3TransitionRoute> |