| Index: generated/googleapis/lib/calendar/v3.dart
|
| diff --git a/generated/googleapis/lib/calendar/v3.dart b/generated/googleapis/lib/calendar/v3.dart
|
| index fc0aefb674cb26f25fc85b76b73e8e9db2724ace..c8e4b33796822bb0e6bdb423748f4e21bfc529e0 100644
|
| --- a/generated/googleapis/lib/calendar/v3.dart
|
| +++ b/generated/googleapis/lib/calendar/v3.dart
|
| @@ -4033,6 +4033,30 @@ class Event {
|
|
|
|
|
| /** Not documented yet. */
|
| +class EventAttachment {
|
| + /** File name. */
|
| + core.String title;
|
| +
|
| +
|
| + EventAttachment();
|
| +
|
| + EventAttachment.fromJson(core.Map _json) {
|
| + if (_json.containsKey("title")) {
|
| + title = _json["title"];
|
| + }
|
| + }
|
| +
|
| + core.Map toJson() {
|
| + var _json = new core.Map();
|
| + if (title != null) {
|
| + _json["title"] = title;
|
| + }
|
| + return _json;
|
| + }
|
| +}
|
| +
|
| +
|
| +/** Not documented yet. */
|
| class EventAttendee {
|
| /** Number of additional guests. Optional. The default is 0. */
|
| core.int additionalGuests;
|
|
|