Class ActionResponse

ActionResponse

אובייקט התגובה שעשוי להיות מוחזר מפונקציית קריאה חוזרת (לדוגמה, handler של תשובה לטופס) כדי לבצע פעולה אחת או יותר על הלקוח. חלק משילובי הפעולות לא נתמכים.

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

שיטות

שיטהסוג הערך המוחזרתיאור קצר
printJson()Stringמדפיסה את ייצוג ה-JSON של האובייקט הזה.

מסמכי תיעוד מפורטים

printJson()

מדפיסה את ייצוג ה-JSON של האובייקט הזה. האפשרות הזו מיועדת לניפוי באגים בלבד.

חזרה

String