Action de carte qui affiche une carte d'aperçu du lien et un chip intelligent dans l'application hôte. Pour plus plus d'informations, consultez la section Liens d'aperçu grâce aux chips intelligents.
const decoratedText = CardService.newDecoratedText() .setTopLabel('Hello') .setText('Hi!'); const cardSection = CardService.newCardSection() .addWidget(decoratedText); const card = CardService.newCardBuilder() .addSection(cardSection) .build(); const linkPreview = CardService.newLinkPreview() .setPreviewCard(card) .setTitle('Smart chip title');
Méthodes
Méthode | Type renvoyé | Brève description |
---|---|---|
printJson() | String | Affiche la représentation JSON de cet objet. |
setLinkPreviewTitle(title) | LinkPreview | Définit le titre qui s'affiche dans l'aperçu du lien au-dessus de la fiche d'aperçu. |
setPreviewCard(previewCard) | LinkPreview | Définit la fiche qui affiche les informations sur un lien provenant d'un service tiers ou autre que Google. |
setTitle(title) | LinkPreview | Définit le titre qui s'affiche dans le chip intelligent pour l'aperçu du lien. |
Documentation détaillée
printJson()
Affiche la représentation JSON de cet objet. Il n'est utilisé qu'à des fins de débogage.
Renvois
String
setLinkPreviewTitle(title)
Définit le titre qui s'affiche dans l'aperçu du lien au-dessus de la fiche d'aperçu. Si cette règle n'est pas configurée, le lien
l'aperçu affiche l'en-tête de PreviewCard
.
const linkPreview = CardService.newLinkPreview() .setLinkPreviewTitle("Link preview title");
Paramètres
Nom | Type | Description |
---|---|---|
title | String | Titre de l'aperçu du lien. |
Renvois
LinkPreview
: objet utilisé pour le chaînage.
setPreviewCard(previewCard)
Définit la fiche qui affiche les informations sur un lien provenant d'un service tiers ou autre que Google.
const decoratedText = CardService.newDecoratedText() .setTopLabel('Hello') .setText('Hi!'); const cardSection = CardService.newCardSection() .addWidget(decoratedText); const card = CardService.newCardBuilder() .addSection(cardSection) .build(); const linkPreview = CardService.newLinkPreview() .setPreviewCard(card) .setTitle('Smart chip title');
Paramètres
Nom | Type | Description |
---|---|---|
previewCard | Card | Fiche d'aperçu. |
Renvois
LinkPreview
: objet utilisé pour le chaînage.
setTitle(title)
Définit le titre qui s'affiche dans le chip intelligent pour l'aperçu du lien. Si cette règle n'est pas configurée, le chip intelligent
affiche l'en-tête de PreviewCard
.
const linkPreview = CardService.newLinkPreview() .setTitle('Smart chip title');
Paramètres
Nom | Type | Description |
---|---|---|
title | String | Titre du chip intelligent. |
Renvois
LinkPreview
: objet utilisé pour le chaînage.