Stay organized with collections
Save and categorize content based on your preferences.
ButtonSet
Holds a set of Button objects that are displayed in a row.
var textButton = CardService.newTextButton();
// Finish building the text button...
var imageButton = CardService.newImageButton();
// Finish building the image button...
var buttonSet = CardService.newButtonSet()
.addButton(textButton)
.addButton(imageButton);