Class ActionResponse

פעולהתגובה

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

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

Methods

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

מסמכים מפורטים

printJson()

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

חזרה

String