Class ActionResponse

ResponsTindakan

Objek respons yang dapat ditampilkan dari fungsi callback (misalnya, pengendali respons formulir) untuk melakukan satu atau beberapa tindakan pada klien. Beberapa kombinasi tindakan tidak didukung.

// An action that opens a link
const actionResponse =
    CardService.newActionResponseBuilder()
        .setOpenLink(CardService.newOpenLink().setUrl('https://www.google.com'))
        .build();

// An action that shows a notification.
const notificationActionResponse = CardService.newActionResponseBuilder()
                           .setNotification(
                               CardService.newNotification().setText(
                                   'Some info to display to user'),
                               )
                           .build();

// An action that shows an additional card. It also sets a flag to indicate that
// the original state data has changed.

const cardBuilder = CardService.newCardBuilder();
// Build card ...
const navigationActionResponse = CardService.newActionResponseBuilder()
                           .setNavigation(CardService.newNavigation().pushCard(
                               cardBuilder.build()))
                           .setStateChanged(true)
                           .build();

Metode

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

Dokumentasi mendetail

printJson()

Mencetak representasi JSON objek ini. Ini hanya untuk proses debug.

Pulang pergi

String