Class Dialog
Dialog
자세한 내용은 Google Chat 문서의 대화형 대화상자 열기를 참고하세요.
Dialog
객체의 빌더입니다.
Google Chat 앱에서만 사용할 수 있습니다. Google Workspace 부가기능에는 사용할 수 없습니다.
const card = CardService.newCardBuilder()
.setHeader(CardService.newCardHeader().setTitle('Card title'))
.build();
// Sets the card of the dialog.
const dialog = CardService.newDialog().setBody(card);
자세한 문서
setBody(card)
Dialog
의 카드를 설정합니다.
const card = CardService.newCardBuilder()
.setHeader(CardService.newCardHeader().setTitle('Card title'))
.build();
// Sets the card of the dialog.
const dialog = CardService.newDialog().setBody(card);
매개변수
리턴
Dialog
: 연결을 위한 객체입니다.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-12-21(UTC)
[null,null,["최종 업데이트: 2024-12-21(UTC)"],[[["`Dialog` helps you create interactive dialogs within Google Chat apps for displaying information or gathering input."],["It's exclusively for Google Chat apps and not available for Google Workspace Add-ons."],["The core functionality involves setting a card, built using `CardService`, as the body of the dialog to present content to the user."],["`setBody()` method is key to setting the card within the dialog and supports chaining for further configurations."]]],[]]