Class CalendarEventActionResponse
CalendarEventActionResponse
Represents a response that makes changes to the calendar event that the user is currently editing
in reaction to an action taken in the UI, such as a button click.
// A CalendarEventActionResponse that adds two attendees to an event.
const calendarEventActionResponse =
CardService.newCalendarEventActionResponseBuilder()
.addAttendees(['user1@example.com', 'user2@example.com'])
.build();
Methods
Method | Return type | Brief description |
printJson() | String | Prints the JSON representation of this object. |
Detailed documentation
printJson()
Prints the JSON representation of this object. This is for debugging only.
Return
String
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-31 UTC.
[null,null,["Last updated 2024-10-31 UTC."],[[["`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."]]],[]]