Obiekt odpowiedzi, który może zostać zwrócony z funkcji wywołania zwrotnego (np. z obsługi odpowiedzi na formularz), aby wykonać co najmniej 1 działanie na kliencie. Niektóre kombinacje działań nie są obsługiwane.
// 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();
Metody
Metoda | Zwracany typ | Krótki opis |
---|---|---|
print | String | Wypisuje reprezentację obiektu w formacie JSON. |
Szczegółowa dokumentacja
print Json()
Wypisuje reprezentację obiektu w formacie JSON. Jest to tylko funkcja debugowania.
Powrót
String