AI-generated Key Takeaways
-  Dialog is a builder for Dialog objects. 
-  Dialogs are only available for Google Chat apps, not Google Workspace add-ons. 
-  The setBody(card)method sets the card of the Dialog object.
For details, see Open interactive dialogs in the Google Chat documentation.
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 (); // Sets the card of the dialog. const dialog = CardService . newDialog (). setBody ( card );
Methods
| Method | Return type | Brief description | 
|---|---|---|
|  Dialog 
 | Sets the card of the Dialog. | 
Detailed documentation
 set  
 
 Sets the card 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 );
Parameters
| Name | Type | Description | 
|---|---|---|
| card |  Card 
 | The  Card 
to use. | 
Return
  Dialog 
 
— This object, for chaining.

