Class Link

Link

The link object from a third-party resource which gets converted it to a smart chip in the host application.

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

const link =
    AddOnsResponseService.newLink()
        .setUrl("www.clickme.com");

Methods

MethodReturn typeBrief description
setTitle(title)LinkSets the title of the link.
setUrl(url)LinkSets the URL of the link.

Detailed documentation

setTitle(title)

Sets the title of the link.

Parameters

NameTypeDescription
titleStringThe displayed title of this link object.

Return

Link — This link object, for chaining.


setUrl(url)

Sets the URL of the link.

Parameters

NameTypeDescription
urlStringThe destination URL of the link object.

Return

Link — This link object, for chaining.