L'oggetto risposta che può essere restituito da una funzione di callback (ad es. un gestore di risposte a un modulo) eseguire una o più azioni sul client. Alcune combinazioni di azioni non sono supportate.
// An action that opens a link var actionResponse = CardService.newActionResponseBuilder() .setOpenLink(CardService.newOpenLink() .setUrl("https://www.google.com")) .build(); // An action that shows a notification. var actionResponse = 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. var cardBuilder = CardService.newCardBuilder(); // Build card ... var actionResponse = CardService.newActionResponseBuilder() .setNavigation(CardService.newNavigation() .pushCard(cardBuilder.build())) .setStateChanged(true) .build();
Metodi
Metodo | Tipo restituito | Breve descrizione |
---|---|---|
printJson() | String | Stampa la rappresentazione JSON dell'oggetto. |
Documentazione dettagliata
printJson()
Stampa la rappresentazione JSON dell'oggetto. Serve solo per il debug.
Invio
String