Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
IDialogResult interface
- Package:
- botbuilder
Results returned by a child dialog to its parent via a call to session.endDialog().
Properties
| childId | ID of the child dialog thats ending. |
| error | If an error occurred the child dialog can return the error to the parent. |
| response | The users response. |
| resumed | The reason why the current dialog is being resumed. Defaults to ResumeReason.completed. |
Property Details
childId
ID of the child dialog thats ending.
childId?: string
Property Value
string
error
If an error occurred the child dialog can return the error to the parent.
error?: Error
Property Value
Error
response
The users response.
response?: T
Property Value
T
resumed
The reason why the current dialog is being resumed. Defaults to ResumeReason.completed.
resumed?: ResumeReason
