Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: generated/googleapis/lib/calendar/v3.dart

Issue 698403003: Api roll 5: 2014-11-05 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698