I've been working on my Dialogflow Fulfillment in my Webhook / Web API and I'm now looking at the Fulfillment Messages part of the response. I've realized it has to be a list of GoogleCloudDialogflowV2IntentMessage
.
Looking at the metadata of that class; I see this:
It seems to support all these types of responses:
- Basic Card
- Card
- Carousel Select
- Image
- Link Out Suggestion
- List Select
- Payload
- Quick Replies
- Simple Responses
- Suggestions
- Text
When I was working in the Dialogflow Console; if I clicked on 'Add Response' under the 'Google Assistant' responses; there were options that are not directly in this GoogleCloudDialogflowV2IntentMessage
class. The option I'm interested in is: 'Table Card'.
How can I make my API return a 'Table Card' as a response?
Can I somehow pass details of a 'Table Card' in the 'Payload' property?
Am I misunderstanding something somewhere along the lines?
Help / Advice appreciated.