Class InsertWidget

InsertWidget

A builder for InsertWidget objects. Developers cans insert a widget into a card by passing a InsertWidget to ModifyCard

Only available for Google Workspace add-ons that extend Google Workspace Studio.

Sample usage:

const newWidget = CardService.newDecoratedText().setText('New Widget');

const insertWidget = AddOnsResponseService.newInsertWidget()
                                          .insertAboveWidget('sample_id')
                                          .setWidget(newWidget);

const modifyCard = AddOnsResponseService.newModifyCard().setInsertWidget(insertWidget);

Methods

MethodReturn typeBrief description
insertAboveWidget(widgetId)InsertWidgetSets the widget ID, and the new widget is inserted above the widget with the given ID.
insertBelowWidget(widgetId)InsertWidgetSets the widget ID, and the new widget is inserted below the widget with the given ID.
setWidget(widget)InsertWidgetSets the Widget to be inserted.

Detailed documentation

insertAboveWidget(widgetId)

Sets the widget ID, and the new widget is inserted above the widget with the given ID. An error is thrown if the widget ID is not found.

Parameters

NameTypeDescription
widgetIdStringThe ID of the widget to insert above.

Return

InsertWidget — The insert widget object, for chaining.


insertBelowWidget(widgetId)

Sets the widget ID, and the new widget is inserted below the widget with the given ID. An error is thrown if the widget ID is not found.

Parameters

NameTypeDescription
widgetIdStringThe ID of the widget to insert below.

Return

InsertWidget — The insert widget object, for chaining.


setWidget(widget)

Sets the Widget to be inserted. An error is thrown if there is a existing widget with the same ID.

Parameters

NameTypeDescription
widgetWidgetThe widget to be inserted.

Return

InsertWidget — The insert widget object, for chaining.