GlobalIntentEvent
Stay organized with collections
Save and categorize content based on your preferences.
Defines a global intent handler. Global intent events are scoped to the entire Actions project and may be overridden by intent handlers in a scene. Intent names must be unique within an Actions project.
Global intents can be matched anytime during a session, allowing users to access common flows like "get help" or "go back home." They can also be used to deep link users into specific flows when they invoke an Action.
Note, the intent name is specified in the name of the file.
YAML representation |
transitionToScene: string
handler:
object (EventHandler ) |
Fields |
transitionToScene |
string
Optional. Destination scene which the conversation should jump to. The state of the current scene is destroyed on the transition.
|
handler |
object (EventHandler )
Optional. Event handler which is triggered when the intent is matched. Should execute before transitioning to the destination scene. Useful to generate Prompts in response to events.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["Global intent handlers are defined in YAML and manage intents for the entire Actions project, potentially overridden by scene-specific handlers."],["These intents enable users to access universal flows like help or home and facilitate deep linking into specific parts of the Action."],["A global intent handler can optionally transition to a specified scene, discarding the current scene's state, and trigger an event handler for prompt generation."]]],[]]