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

الطُرق

الطريقةنوع القيمة التي يتم عرضهاوصف قصير
printJson()Stringتُطبع تمثيل JSON لهذا الكائن.

مستندات تفصيلية

printJson()

تُطبع تمثيل JSON لهذا الكائن. يُستخدم هذا الخيار لتصحيح الأخطاء فقط.

الإرجاع

String