Class CalendarEventActionResponse

CalendarEventActionResponse

表示一个响应,该响应根据用户在界面中执行的操作(例如点击按钮)而更改用户当前正在修改的日历活动。

// A CalendarEventActionResponse that adds two attendees to an event.
var calendarEventActionResponse = CardService.newCalendarEventActionResponseBuilder()
    .addAttendees(["user1@example.com", "user2@example.com"])
    .build();

方法

方法返回类型简介
printJson()String输出此对象的 JSON 表示法。

详细文档

printJson()

输出此对象的 JSON 表示法。这仅用于调试。

弃踢回攻

String