Class ActionResponse

ResponsTindakan

Tindakan yang dapat digunakan add-on dalam kartu atau aplikasi host.

Tersedia untuk add-on Google Workspace yang memperluas Google Chat.

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

Metode

MetodeJenis hasil yang ditampilkanDeskripsi singkat
printJson()StringMencetak representasi JSON dari objek ini.

Dokumentasi mendetail

printJson()

Mencetak representasi JSON dari objek ini. Opsi ini hanya untuk proses debug.

Pulang pergi

String