Class ChatResponseBuilder

ChatResponseBuilder

Builder ל-ChatResponse אובייקטים.

האפשרות הזו זמינה רק באפליקציות של 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();

שיטות

שיטהסוג הערך המוחזרתיאור קצר
addCardsV2(cardWithId)ChatResponseBuilderמגדיר את שדה הכרטיס של ההודעה.
build()ChatResponseיצירת התגובה הנוכחית לפעולה ואימות שלה.
setActionResponse(actionResponse)ChatResponseBuilderמגדיר את השדה של תגובה לפעולה של ההודעה.
setText(text)ChatResponseBuilderמגדיר את הטקסט של ההודעה ב-Chat.

מסמכי תיעוד מפורטים

addCardsV2(cardWithId)

מגדיר את שדה הכרטיס של ההודעה. הכרטיס הזה משמש לשליחת כרטיס בהודעות ב-Google Chat. כל אחד משויך למזהה ייחודי, יש ליצור אובייקט CardWithId ולהשתמש בו עם בשיטה הזו.

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();

פרמטרים

שםסוגתיאור
cardWithIdCardWithIdCardWithId לשימוש.

חזרה

ChatResponseBuilder – האובייקט הזה, לשרשור.


build()

יצירת התגובה הנוכחית לפעולה ואימות שלה.

חזרה

ChatResponse – ChatResponse מאומת.


setActionResponse(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();

פרמטרים

שםסוגתיאור
actionResponseChatActionResponseChatActionResponse לשימוש.

חזרה

ChatResponseBuilder – האובייקט הזה, לשרשור.


setText(text)

מגדיר את הטקסט של ההודעה ב-Chat.

const chatResponse = CardService.newChatResponseBuilder()
       .setText('Example text')
    .build();

פרמטרים

שםסוגתיאור
textStringהטקסט לשימוש.

חזרה

ChatResponseBuilder – האובייקט הזה, לשרשור.