ה-builder של אובייקטים מסוג Chat
.
התכונה הזו זמינה רק באפליקציות של Google Chat. לא זמין לתוספים של 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();
Methods
שיטה | סוג הערך המוחזר | תיאור קצר |
---|---|---|
add | Chat | הגדרת שדה הכרטיס של ההודעה. |
build() | Chat | יצירת התגובה הנוכחית של הפעולה ואימות שלה. |
set | Chat | הגדרת שדה התגובה של הפעולה בהודעה. |
set | Chat | הגדרת הטקסט של ההודעה ב-Chat. |
מסמכים מפורטים
add Cards V2(cardWithId)
הגדרת שדה הכרטיס של ההודעה. הקוד הזה משמש לשליחת כרטיס בהודעה ב-Google Chat. לכל כרטיס משויך מזהה ייחודי. צריך ליצור אובייקט Card
ולהשתמש בו בשיטה הזו.
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();
פרמטרים
שם | סוג | תיאור |
---|---|---|
card | Card | Card לשימוש. |
חזרה
Chat
– האובייקט הזה, לצורך קישור.
build()
set Action Response(actionResponse)
הגדרת שדה התגובה של הפעולה בהודעה.
// 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();
פרמטרים
שם | סוג | תיאור |
---|---|---|
action | Chat | Chat לשימוש. |
חזרה
Chat
– האובייקט הזה, לצורך קישור.
set Text(text)
הגדרת הטקסט של ההודעה ב-Chat.
const chatResponse = CardService.newChatResponseBuilder().setText('Example text').build();
פרמטרים
שם | סוג | תיאור |
---|---|---|
text | String | הטקסט שרוצים להשתמש בו. |
חזרה
Chat
– האובייקט הזה, לצורך קישור.