Class 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
- チェーン用のこのオブジェクト。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は 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."]]],[]]