アドオンがカードまたはホスト アプリケーションで使用できるアクション。
Google Chat を拡張する Google Workspace アドオンで利用できます。
const notification = AddOnsResponseService.newNotification().setText("You closed a dialog!"); const navigation = AddOnsResponseService.newNavigation() .setEndNavigation(AddOnsResponseService.EndNavigation.CLOSE_DIALOG); // An action that closes the dialog and shows a notification. const action = AddOnsResponseService.newActionResponseBuilder() .setNavigation(navigation) .setNotification(notification) .build();
メソッド
| メソッド | 戻り値の型 | 概要 |
|---|---|---|
print | String | このオブジェクトの JSON 表現を出力します。 |
詳細なドキュメント
print Json()
このオブジェクトの JSON 表現を出力します。これはデバッグ専用です。
戻る
String