A clickable chip in the text format.
Only available for Google Workspace add-ons that extend Google Workspace Studio.
Sample usage:
const chip = AddOnsResponseService.newChip() .setTextFormatIcon(AddOnsResponseService.newTextFormatIcon() .setIconUrl("https://www.google.com/icon.png")) .setLabel("test_label") .setUrl("https://www.google.com/chip.png"); }
Methods
| Method | Return type | Brief description |
|---|---|---|
set | Text | Sets the text displayed in the chip. |
set | Text | Sets the icon displayed in the chip. |
set | Text | Sets the URL to navigate to when the chip is clicked. |
Detailed documentation
setLabel(label)
Sets the text displayed in the chip.
Parameters
| Name | Type | Description |
|---|---|---|
label | String | The text label of the chip. |
Return
Text — This chip object, for chaining.
setTextFormatIcon(icon)
Sets the icon displayed in the chip.
Parameters
| Name | Type | Description |
|---|---|---|
icon | Text | The Text to set in the chip. |
Return
Text — This chip object, for chaining.
setUrl(url)
Sets the URL to navigate to when the chip is clicked.
Parameters
| Name | Type | Description |
|---|---|---|
url | String | The destination URL to the chip. |
Return
Text — This chip object, for chaining.