Class Action

Action

An action that Google Workspace add-ons that extend Google Workspace Flows can use to render a new card.

Only available through the Gemini Alpha program for Google Workspace add-ons that extend Google Workspace Flows.

const link = AddOnsResponseService.newLink().setUrl('https://www.google.com');
const action =
    AddOnsResponseService.newAction()
        .setLink(link);

const renderAction = AddOnsResponseService.newRenderActionBuilder().setAction(action).build();

Methods

MethodReturn typeBrief description
addNavigation(navigation)ActionAdd card navigation to the action.

Detailed documentation

addNavigation(navigation)

Add card navigation to the action.

Parameters

NameTypeDescription
navigationNavigationThe Navigation to use.

Return

Action — This object, for chaining.

Throws

Error — if the navigation argument is invalid.