DialogResponseinterface
Describes the response returned by the platform after executing a request for displaying a dialog.
Properties (5)
| Property | Type | Default | Required | Description |
|---|---|---|---|---|
| inputs⚓︎ | Array<DialogInput> | x | x | List of the available dialog inputs. |
| isClosed⚓︎ | boolean | x | x | Flag indicating whether the dialog was closed by the user (via the "Close" button, by pressing the "Escape" button, or by clicking outside the dialog window). |
| isEnterPressed⚓︎ | boolean | x | x | Flag indicating whether the user pressed the "Enter" button and the dialog was closed without selecting an action button.
In this case, the |
| isExpired⚓︎ | boolean | x | x | Flag indicating whether the dialog timer has expired and the dialog was automatically closed. |
| responseButtonClicked⚓︎ | { id: string; text: string; } | x | x | Describes the dialog button that was clicked. |