Class CalendarEventActionResponse

カレンダーイベントアクションレスポンス

UI で行われたアクション(ボタンのクリックなど)に応じて、ユーザーが現在編集しているカレンダーの予定を変更するレスポンスを表します。

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

メソッド

メソッド戻り値の型概要
printJson()Stringこのオブジェクトの JSON 表現を出力します。

詳細なドキュメント

printJson()

このオブジェクトの JSON 表現を出力します。これはデバッグ専用です。

戻る

String