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 메시지로 카드를 전송하는 데 사용됩니다. 각
카드가 고유 ID와 연결되어 있으면 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();
매개변수
이름 | 유형 | 설명 |
---|---|---|
cardWithId | CardWithId | 사용할 CardWithId 입니다. |
리턴
ChatResponseBuilder
- 체이닝을 위한 객체입니다.
build()
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();
매개변수
이름 | 유형 | 설명 |
---|---|---|
actionResponse | ChatActionResponse | 사용할 ChatActionResponse 입니다. |
리턴
ChatResponseBuilder
- 체이닝을 위한 객체입니다.
setText(text)
Chat 메시지의 텍스트를 설정합니다.
const chatResponse = CardService.newChatResponseBuilder() .setText('Example text') .build();
매개변수
이름 | 유형 | 설명 |
---|---|---|
text | String | 사용할 텍스트입니다. |
리턴
ChatResponseBuilder
- 체이닝을 위한 객체입니다.