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 4015 matching lines...) Loading... |
4026 } | 4026 } |
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 { |
| 4037 /** File name. */ |
| 4038 core.String title; |
| 4039 |
| 4040 |
| 4041 EventAttachment(); |
| 4042 |
| 4043 EventAttachment.fromJson(core.Map _json) { |
| 4044 if (_json.containsKey("title")) { |
| 4045 title = _json["title"]; |
| 4046 } |
| 4047 } |
| 4048 |
| 4049 core.Map toJson() { |
| 4050 var _json = new core.Map(); |
| 4051 if (title != null) { |
| 4052 _json["title"] = title; |
| 4053 } |
| 4054 return _json; |
| 4055 } |
| 4056 } |
| 4057 |
| 4058 |
| 4059 /** Not documented yet. */ |
4036 class EventAttendee { | 4060 class EventAttendee { |
4037 /** Number of additional guests. Optional. The default is 0. */ | 4061 /** Number of additional guests. Optional. The default is 0. */ |
4038 core.int additionalGuests; | 4062 core.int additionalGuests; |
4039 | 4063 |
4040 /** The attendee's response comment. Optional. */ | 4064 /** The attendee's response comment. Optional. */ |
4041 core.String comment; | 4065 core.String comment; |
4042 | 4066 |
4043 /** The attendee's name, if available. Optional. */ | 4067 /** The attendee's name, if available. Optional. */ |
4044 core.String displayName; | 4068 core.String displayName; |
4045 | 4069 |
(...skipping 713 matching lines...) Loading... |
4759 _json["end"] = (end).toIso8601String(); | 4783 _json["end"] = (end).toIso8601String(); |
4760 } | 4784 } |
4761 if (start != null) { | 4785 if (start != null) { |
4762 _json["start"] = (start).toIso8601String(); | 4786 _json["start"] = (start).toIso8601String(); |
4763 } | 4787 } |
4764 return _json; | 4788 return _json; |
4765 } | 4789 } |
4766 } | 4790 } |
4767 | 4791 |
4768 | 4792 |
OLD | NEW |