OLD | NEW |
1 library googleapis.calendar.v3; | 1 library googleapis.calendar.v3; |
2 | 2 |
3 import "dart:core" as core; | 3 import "dart:core" as core; |
4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
5 import "dart:async" as async; | 5 import "dart:async" as async; |
6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
7 | 7 |
8 import "package:crypto/crypto.dart" as crypto; | 8 import "package:crypto/crypto.dart" as crypto; |
9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
10 import '../src/common_internal.dart' as common_internal; | 10 import '../src/common_internal.dart' as common_internal; |
(...skipping 4016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4027 if (visibility != null) { | 4027 if (visibility != null) { |
4028 _json["visibility"] = visibility; | 4028 _json["visibility"] = visibility; |
4029 } | 4029 } |
4030 return _json; | 4030 return _json; |
4031 } | 4031 } |
4032 } | 4032 } |
4033 | 4033 |
4034 | 4034 |
4035 /** Not documented yet. */ | 4035 /** Not documented yet. */ |
4036 class EventAttachment { | 4036 class EventAttachment { |
4037 /** File name. */ | |
4038 core.String title; | |
4039 | |
4040 | 4037 |
4041 EventAttachment(); | 4038 EventAttachment(); |
4042 | 4039 |
4043 EventAttachment.fromJson(core.Map _json) { | 4040 EventAttachment.fromJson(core.Map _json) { |
4044 if (_json.containsKey("title")) { | |
4045 title = _json["title"]; | |
4046 } | |
4047 } | 4041 } |
4048 | 4042 |
4049 core.Map toJson() { | 4043 core.Map toJson() { |
4050 var _json = new core.Map(); | 4044 var _json = new core.Map(); |
4051 if (title != null) { | |
4052 _json["title"] = title; | |
4053 } | |
4054 return _json; | 4045 return _json; |
4055 } | 4046 } |
4056 } | 4047 } |
4057 | 4048 |
4058 | 4049 |
4059 /** Not documented yet. */ | 4050 /** Not documented yet. */ |
4060 class EventAttendee { | 4051 class EventAttendee { |
4061 /** Number of additional guests. Optional. The default is 0. */ | 4052 /** Number of additional guests. Optional. The default is 0. */ |
4062 core.int additionalGuests; | 4053 core.int additionalGuests; |
4063 | 4054 |
(...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4783 _json["end"] = (end).toIso8601String(); | 4774 _json["end"] = (end).toIso8601String(); |
4784 } | 4775 } |
4785 if (start != null) { | 4776 if (start != null) { |
4786 _json["start"] = (start).toIso8601String(); | 4777 _json["start"] = (start).toIso8601String(); |
4787 } | 4778 } |
4788 return _json; | 4779 return _json; |
4789 } | 4780 } |
4790 } | 4781 } |
4791 | 4782 |
4792 | 4783 |
OLD | NEW |