Compilateur pour les objets ChatResponse
.
Disponible uniquement pour les applications Google Chat. Non disponible pour les modules complémentaires Google Workspace.
const cardSection = CardService.newCardSection(); cardSection.addWidget( CardService.newTextParagraph().setText('This is a text paragraph widget.')); const card = CardService.newCardBuilder() .setName('Card name') .setHeader(CardService.newCardHeader().setTitle('Card title')) .addSection(cardSection) .build(); const cardWithId = CardService.newCardWithId() .setCardId('card_id') .setCard(card); const chatResponse = CardService.newChatResponseBuilder() .addCardsV2(cardWithId) .setText('Example text') .build();
Méthodes
Méthode | Type renvoyé | Brève description |
---|---|---|
addCardsV2(cardWithId) | ChatResponseBuilder | Définit le champ de fiche du message. |
build() | ChatResponse | Crée la réponse de l'action actuelle et la valide. |
setActionResponse(actionResponse) | ChatResponseBuilder | Définit le champ de réponse d'action du message. |
setText(text) | ChatResponseBuilder | Définit le texte du message Chat. |
Documentation détaillée
addCardsV2(cardWithId)
Définit le champ de fiche du message. Permet d'envoyer une fiche dans un message Google Chat. Chaque
est associé à un identifiant unique, l'objet CardWithId
doit être créé et utilisé avec
cette méthode.
const cardSection = CardService.newCardSection(); cardSection.addWidget( CardService.newTextParagraph().setText('This is a text paragraph widget.')); const card = CardService.newCardBuilder() .setHeader(CardService.newCardHeader().setTitle('Card title')) .addSection(cardSection) .build(); const cardWithId = CardService.newCardWithId() .setCardId('card_id') .setCard(card); const chatResponse = CardService.newChatResponseBuilder() .addCardsV2(cardWithId) .build();
Paramètres
Nom | Type | Description |
---|---|---|
cardWithId | CardWithId | Le CardWithId à utiliser. |
Renvois
ChatResponseBuilder
: objet utilisé pour le chaînage.
build()
setActionResponse(actionResponse)
Définit le champ de réponse d'action du message.
// Build the card. const card = CardService.newCardBuilder() .setHeader(CardService.newCardHeader().setTitle('card title')).build(); // Creates the dialog. const dialog = CardService.newDialog() .setBody(card); // Creates the dialog action. const dialogAction = CardService.newDialogAction() .setDialog(dialog) // Creates the action response and sets the type to DIALOG. const actionResponse = CardService.newChatActionResponse() .setDialogAction(dialogAction).setResponseType(CardService.Type.DIALOG); // Creates the Chat response and sets the action response. const chatResponse = CardService.newChatResponseBuilder() .setActionResponse(actionResponse) .build();
Paramètres
Nom | Type | Description |
---|---|---|
actionResponse | ChatActionResponse | Le ChatActionResponse à utiliser. |
Renvois
ChatResponseBuilder
: objet utilisé pour le chaînage.
setText(text)
Définit le texte du message Chat.
const chatResponse = CardService.newChatResponseBuilder() .setText('Example text') .build();
Paramètres
Nom | Type | Description |
---|---|---|
text | String | Texte à utiliser. |
Renvois
ChatResponseBuilder
: objet utilisé pour le chaînage.