cardActions property

List<GoogleAppsCardV1CardAction>? cardActions
getter/setter pair

The card's actions.

Actions are added to the card's toolbar menu. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons): For example, the following JSON constructs a card action menu with Settings and Send Feedback options: ``` "card_actions": [ { "actionLabel": "Settings", "onClick": { "action": { "functionName": "goToView", "parameters": { "key": "viewType", "value": "SETTING" } , "loadIndicator": "LoadIndicator.SPINNER" } } }, { "actionLabel": "Send Feedback", "onClick": { "openLink": { "url": "https://example.com/feedback" } } } ]

Implementation

core.List<GoogleAppsCardV1CardAction>? cardActions;