ActionType

Action type allows the UI to understand what operation to trigger when user clicks ona suggested action. For example: 1. For a FOLLOW_UP action type, the UI just needs to create a new message with the follow_up.follow_up string. 2. For a NAVIGATION action type, the UI should trigger a redirection to the navigation.target_url URL. 3. For a EXECUTION action type, the UI should execute a specific suggested predefined action. Action type also allows the backend to understand what suggested action triggered a new message.

Enums
ACTION_TYPE_UNSPECIFIED The action type is unspecified.
FOLLOW_UP The action is a follow up action.
NAVIGATION The action is a navigation action.
EXECUTION The action is an execution action.