BotImageResponseCardArgs

data class BotImageResponseCardArgs(val buttons: Output<List<BotButtonArgs>>? = null, val imageUrl: Output<String>? = null, val subtitle: Output<String>? = null, val title: Output<String>) : ConvertibleToJava<BotImageResponseCardArgs>

A message that defines a response card that the client application can show to the user.

Constructors

Link copied to clipboard
constructor(buttons: Output<List<BotButtonArgs>>? = null, imageUrl: Output<String>? = null, subtitle: Output<String>? = null, title: Output<String>)

Properties

Link copied to clipboard
val buttons: Output<List<BotButtonArgs>>? = null

A list of buttons that should be displayed on the response card.

Link copied to clipboard
val imageUrl: Output<String>? = null

The URL of an image to display on the response card.

Link copied to clipboard
val subtitle: Output<String>? = null

The subtitle to display on the response card.

Link copied to clipboard
val title: Output<String>

The title to display on the response card.

Functions

Link copied to clipboard
open override fun toJava(): BotImageResponseCardArgs