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)DialogDialog のカードを設定します。

詳細なドキュメント

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

パラメータ

名前説明
cardCard使用する Card

戻る

Dialog - チェーン用のこのオブジェクト。