A builder for Dialog
objects.
Only available for Google Chat apps. Not available for Google Workspace Add-ons.
const card = CardService.newCardBuilder() .setHeader(CardService.newCardHeader().setTitle('Card title')) .build(); const dialog = CardService.newDialog().setBody(card); const dialogAction = CardService.newDialogAction().setDialog(dialog);
Methods
Method | Return type | Brief description |
---|---|---|
set | Dialog | Sets the action status of Dialog . |
set | Dialog | Sets the dialog of the Dialog . |
Detailed documentation
setActionStatus(actionStatus)
Sets the action status of Dialog
.
const actionStatus = CardService.newActionStatus().setStatusCode( CardService.Status.OK, ); const dialogAction = CardService.newDialogAction().setActionStatus(actionStatus);
Parameters
Name | Type | Description |
---|---|---|
action | Action | The Action to use. |
Return
Dialog
— This object, for chaining.
setDialog(dialog)
Sets the dialog of the Dialog
.
const card = CardService.newCardBuilder() .setHeader(CardService.newCardHeader().setTitle('card title')) .build(); // Sets the card of the dialog. const dialog = CardService.newDialog().setBody(card); const dialogAction = CardService.newDialogAction().setDialog(dialog);
Parameters
Name | Type | Description |
---|---|---|
dialog | Dialog | The Dialog to use. |
Return
Dialog
— This object, for chaining.