// A CalendarEventActionResponse that adds two attendees to an event.constcalendarEventActionResponse=CardService.newCalendarEventActionResponseBuilder().addAttendees(['user1@example.com','user2@example.com']).build();
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2024-12-21 (世界標準時間)。"],[[["`CalendarEventActionResponse` enables modifications to a calendar event based on user actions within the UI."],["It facilitates actions like adding attendees or potentially other modifications (not explicitly stated) to the event being edited."],["Developers can utilize the `printJson()` method for debugging purposes to examine the JSON structure of the response."]]],["The `CalendarEventActionResponse` modifies a calendar event being edited in the UI, based on user actions. Key actions include adding attendees, demonstrated by the `addAttendees()` method, which accepts an array of email addresses. The class also provides the `printJson()` method for debugging, returning a string containing the JSON representation of the current state. The response is built using `CardService.newCalendarEventActionResponseBuilder()` and finalized with `build()`.\n"]]