LinkValueSpec

  • actions.intent.LINK requires a JSON input with openUrlAction and dialogSpec fields.

  • openUrlAction specifies the destination for the link, which can be a web URL, conversational link, or Android intent.

  • dialogSpec is an object providing additional information for the linking action.

Passed from the app as input for actions.intent.LINK.

JSON representation
{
  "openUrlAction": {
    object (OpenUrlAction)
  },
  "dialogSpec": {
    object (DialogSpec)
  }
}
Fields
openUrlAction

object (OpenUrlAction)

Destination that the app should link to. Could be a web URL, a conversational link or an Android intent. A web URL is used to handoff the flow to some website. A conversational link is used to provide a deep link into another AoG app. An Android intent URI is used to trigger an Android intent. This requires the packageName to be specified.

dialogSpec

object (DialogSpec)