@maxim_mazurok/gapi.client.calendar-v3 0.0.20230414 → 0.0.20230428

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +1757 -906
  2. package/package.json +1 -1
  3. package/tests.ts +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://calendar-json.googleapis.com/$discovery/rest?version=v3
12
- // Revision: 20230414
12
+ // Revision: 20230428
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -24,26 +24,34 @@ declare namespace gapi.client {
24
24
  namespace calendar {
25
25
  interface Acl {
26
26
  /** ETag of the collection. */
27
- etag?: string;
27
+ etag?:
28
+ string;
28
29
  /** List of rules on the access control list. */
29
- items?: AclRule[];
30
+ items?:
31
+ AclRule[];
30
32
  /** Type of the collection ("calendar#acl"). */
31
- kind?: string;
33
+ kind?:
34
+ string;
32
35
  /** Token used to access the next page of this result. Omitted if no further results are available, in which case nextSyncToken is provided. */
33
- nextPageToken?: string;
36
+ nextPageToken?:
37
+ string;
34
38
  /**
35
39
  * Token used at a later point in time to retrieve only the entries that have changed since this result was returned. Omitted if further results are available, in which case
36
40
  * nextPageToken is provided.
37
41
  */
38
- nextSyncToken?: string;
42
+ nextSyncToken?:
43
+ string;
39
44
  }
40
45
  interface AclRule {
41
46
  /** ETag of the resource. */
42
- etag?: string;
47
+ etag?:
48
+ string;
43
49
  /** Identifier of the Access Control List (ACL) rule. See Sharing calendars. */
44
- id?: string;
50
+ id?:
51
+ string;
45
52
  /** Type of the resource ("calendar#aclRule"). */
46
- kind?: string;
53
+ kind?:
54
+ string;
47
55
  /**
48
56
  * The role assigned to the scope. Possible values are:
49
57
  * - "none" - Provides no access.
@@ -52,53 +60,70 @@ declare namespace gapi.client {
52
60
  * - "writer" - Provides read and write access to the calendar. Private events will appear to users with writer access, and event details will be visible.
53
61
  * - "owner" - Provides ownership of the calendar. This role has all of the permissions of the writer role with the additional ability to see and manipulate ACLs.
54
62
  */
55
- role?: string;
63
+ role?:
64
+ string;
56
65
  /** The extent to which calendar access is granted by this ACL rule. */
57
- scope?: {
58
- /**
59
- * The type of the scope. Possible values are:
60
- * - "default" - The public scope. This is the default value.
61
- * - "user" - Limits the scope to a single user.
62
- * - "group" - Limits the scope to a group.
63
- * - "domain" - Limits the scope to a domain. Note: The permissions granted to the "default", or public, scope apply to any user, authenticated or not.
64
- */
65
- type?: string;
66
- /** The email address of a user or group, or the name of a domain, depending on the scope type. Omitted for type "default". */
67
- value?: string;
68
- };
66
+ scope?:
67
+ {
68
+ /**
69
+ * The type of the scope. Possible values are:
70
+ * - "default" - The public scope. This is the default value.
71
+ * - "user" - Limits the scope to a single user.
72
+ * - "group" - Limits the scope to a group.
73
+ * - "domain" - Limits the scope to a domain. Note: The permissions granted to the "default", or public, scope apply to any user, authenticated or not.
74
+ */
75
+ type?:
76
+ string;
77
+ /** The email address of a user or group, or the name of a domain, depending on the scope type. Omitted for type "default". */
78
+ value?:
79
+ string;
80
+ };
69
81
  }
70
82
  interface Calendar {
71
83
  /** Conferencing properties for this calendar, for example what types of conferences are allowed. */
72
- conferenceProperties?: ConferenceProperties;
84
+ conferenceProperties?:
85
+ ConferenceProperties;
73
86
  /** Description of the calendar. Optional. */
74
- description?: string;
87
+ description?:
88
+ string;
75
89
  /** ETag of the resource. */
76
- etag?: string;
90
+ etag?:
91
+ string;
77
92
  /** Identifier of the calendar. To retrieve IDs call the calendarList.list() method. */
78
- id?: string;
93
+ id?:
94
+ string;
79
95
  /** Type of the resource ("calendar#calendar"). */
80
- kind?: string;
96
+ kind?:
97
+ string;
81
98
  /** Geographic location of the calendar as free-form text. Optional. */
82
- location?: string;
99
+ location?:
100
+ string;
83
101
  /** Title of the calendar. */
84
- summary?: string;
102
+ summary?:
103
+ string;
85
104
  /** The time zone of the calendar. (Formatted as an IANA Time Zone Database name, e.g. "Europe/Zurich".) Optional. */
86
- timeZone?: string;
105
+ timeZone?:
106
+ string;
87
107
  }
88
108
  interface CalendarList {
89
109
  /** ETag of the collection. */
90
- etag?: string;
110
+ etag?:
111
+ string;
91
112
  /** Calendars that are present on the user's calendar list. */
92
- items?: CalendarListEntry[];
113
+ items?:
114
+ CalendarListEntry[];
93
115
  /** Type of the collection ("calendar#calendarList"). */
94
- kind?: string;
116
+ kind?:
117
+ string;
95
118
  /** Token used to access the next page of this result. Omitted if no further results are available, in which case nextSyncToken is provided. */
96
- nextPageToken?: string;
119
+ nextPageToken?:
120
+ string;
97
121
  /**
98
122
  * Token used at a later point in time to retrieve only the entries that have changed since this result was returned. Omitted if further results are available, in which case
99
123
  * nextPageToken is provided.
100
124
  */
101
- nextSyncToken?: string;
125
+ nextSyncToken?:
126
+ string;
102
127
  }
103
128
  interface CalendarListEntry {
104
129
  /**
@@ -108,55 +133,75 @@ declare namespace gapi.client {
108
133
  * - "writer" - Provides read and write access to the calendar. Private events will appear to users with writer access, and event details will be visible.
109
134
  * - "owner" - Provides ownership of the calendar. This role has all of the permissions of the writer role with the additional ability to see and manipulate ACLs.
110
135
  */
111
- accessRole?: string;
136
+ accessRole?:
137
+ string;
112
138
  /**
113
139
  * The main color of the calendar in the hexadecimal format "#0088aa". This property supersedes the index-based colorId property. To set or change this property, you need to specify
114
140
  * colorRgbFormat=true in the parameters of the insert, update and patch methods. Optional.
115
141
  */
116
- backgroundColor?: string;
142
+ backgroundColor?:
143
+ string;
117
144
  /**
118
145
  * The color of the calendar. This is an ID referring to an entry in the calendar section of the colors definition (see the colors endpoint). This property is superseded by the
119
146
  * backgroundColor and foregroundColor properties and can be ignored when using these properties. Optional.
120
147
  */
121
- colorId?: string;
148
+ colorId?:
149
+ string;
122
150
  /** Conferencing properties for this calendar, for example what types of conferences are allowed. */
123
- conferenceProperties?: ConferenceProperties;
151
+ conferenceProperties?:
152
+ ConferenceProperties;
124
153
  /** The default reminders that the authenticated user has for this calendar. */
125
- defaultReminders?: EventReminder[];
154
+ defaultReminders?:
155
+ EventReminder[];
126
156
  /** Whether this calendar list entry has been deleted from the calendar list. Read-only. Optional. The default is False. */
127
- deleted?: boolean;
157
+ deleted?:
158
+ boolean;
128
159
  /** Description of the calendar. Optional. Read-only. */
129
- description?: string;
160
+ description?:
161
+ string;
130
162
  /** ETag of the resource. */
131
- etag?: string;
163
+ etag?:
164
+ string;
132
165
  /**
133
166
  * The foreground color of the calendar in the hexadecimal format "#ffffff". This property supersedes the index-based colorId property. To set or change this property, you need to
134
167
  * specify colorRgbFormat=true in the parameters of the insert, update and patch methods. Optional.
135
168
  */
136
- foregroundColor?: string;
169
+ foregroundColor?:
170
+ string;
137
171
  /** Whether the calendar has been hidden from the list. Optional. The attribute is only returned when the calendar is hidden, in which case the value is true. */
138
- hidden?: boolean;
172
+ hidden?:
173
+ boolean;
139
174
  /** Identifier of the calendar. */
140
- id?: string;
175
+ id?:
176
+ string;
141
177
  /** Type of the resource ("calendar#calendarListEntry"). */
142
- kind?: string;
178
+ kind?:
179
+ string;
143
180
  /** Geographic location of the calendar as free-form text. Optional. Read-only. */
144
- location?: string;
181
+ location?:
182
+ string;
145
183
  /** The notifications that the authenticated user is receiving for this calendar. */
146
- notificationSettings?: {
147
- /** The list of notifications set for this calendar. */
148
- notifications?: CalendarNotification[];
149
- };
184
+ notificationSettings?:
185
+ {
186
+ /** The list of notifications set for this calendar. */
187
+ notifications?:
188
+ CalendarNotification[];
189
+ };
150
190
  /** Whether the calendar is the primary calendar of the authenticated user. Read-only. Optional. The default is False. */
151
- primary?: boolean;
191
+ primary?:
192
+ boolean;
152
193
  /** Whether the calendar content shows up in the calendar UI. Optional. The default is False. */
153
- selected?: boolean;
194
+ selected?:
195
+ boolean;
154
196
  /** Title of the calendar. Read-only. */
155
- summary?: string;
197
+ summary?:
198
+ string;
156
199
  /** The summary that the authenticated user has set for this calendar. Optional. */
157
- summaryOverride?: string;
200
+ summaryOverride?:
201
+ string;
158
202
  /** The time zone of the calendar. Optional. Read-only. */
159
- timeZone?: string;
203
+ timeZone?:
204
+ string;
160
205
  }
161
206
  interface CalendarNotification {
162
207
  /**
@@ -164,7 +209,8 @@ declare namespace gapi.client {
164
209
  * - "email" - Notifications are sent via email.
165
210
  * Required when adding a notification.
166
211
  */
167
- method?: string;
212
+ method?:
213
+ string;
168
214
  /**
169
215
  * The type of notification. Possible values are:
170
216
  * - "eventCreation" - Notification sent when a new event is put on the calendar.
@@ -174,45 +220,62 @@ declare namespace gapi.client {
174
220
  * - "agenda" - An agenda with the events of the day (sent out in the morning).
175
221
  * Required when adding a notification.
176
222
  */
177
- type?: string;
223
+ type?:
224
+ string;
178
225
  }
179
226
  interface Channel {
180
227
  /** The address where notifications are delivered for this channel. */
181
- address?: string;
228
+ address?:
229
+ string;
182
230
  /** Date and time of notification channel expiration, expressed as a Unix timestamp, in milliseconds. Optional. */
183
- expiration?: string;
231
+ expiration?:
232
+ string;
184
233
  /** A UUID or similar unique string that identifies this channel. */
185
- id?: string;
234
+ id?:
235
+ string;
186
236
  /** Identifies this as a notification channel used to watch for changes to a resource, which is "api#channel". */
187
- kind?: string;
237
+ kind?:
238
+ string;
188
239
  /** Additional parameters controlling delivery channel behavior. Optional. */
189
- params?: { [P in string]: string };
240
+ params?:
241
+ { [P in string]: string };
190
242
  /** A Boolean value to indicate whether payload is wanted. Optional. */
191
- payload?: boolean;
243
+ payload?:
244
+ boolean;
192
245
  /** An opaque ID that identifies the resource being watched on this channel. Stable across different API versions. */
193
- resourceId?: string;
246
+ resourceId?:
247
+ string;
194
248
  /** A version-specific identifier for the watched resource. */
195
- resourceUri?: string;
249
+ resourceUri?:
250
+ string;
196
251
  /** An arbitrary string delivered to the target address with each notification delivered over this channel. Optional. */
197
- token?: string;
252
+ token?:
253
+ string;
198
254
  /** The type of delivery mechanism used for this channel. Valid values are "web_hook" (or "webhook"). Both values refer to a channel where Http requests are used to deliver messages. */
199
- type?: string;
255
+ type?:
256
+ string;
200
257
  }
201
258
  interface ColorDefinition {
202
259
  /** The background color associated with this color definition. */
203
- background?: string;
260
+ background?:
261
+ string;
204
262
  /** The foreground color that can be used to write on top of a background with 'background' color. */
205
- foreground?: string;
263
+ foreground?:
264
+ string;
206
265
  }
207
266
  interface Colors {
208
267
  /** A global palette of calendar colors, mapping from the color ID to its definition. A calendarListEntry resource refers to one of these color IDs in its colorId field. Read-only. */
209
- calendar?: { [P in string]: ColorDefinition };
268
+ calendar?:
269
+ { [P in string]: ColorDefinition };
210
270
  /** A global palette of event colors, mapping from the color ID to its definition. An event resource may refer to one of these color IDs in its colorId field. Read-only. */
211
- event?: { [P in string]: ColorDefinition };
271
+ event?:
272
+ { [P in string]: ColorDefinition };
212
273
  /** Type of the resource ("calendar#colors"). */
213
- kind?: string;
274
+ kind?:
275
+ string;
214
276
  /** Last modification time of the color palette (as a RFC3339 timestamp). Read-only. */
215
- updated?: string;
277
+ updated?:
278
+ string;
216
279
  }
217
280
  interface ConferenceData {
218
281
  /**
@@ -224,42 +287,51 @@ declare namespace gapi.client {
224
287
  * - hangoutsMeet: ID is the 10-letter meeting code, for example aaa-bbbb-ccc.
225
288
  * - addOn: ID is defined by the third-party provider. Optional.
226
289
  */
227
- conferenceId?: string;
290
+ conferenceId?:
291
+ string;
228
292
  /**
229
293
  * The conference solution, such as Google Meet.
230
294
  * Unset for a conference with a failed create request.
231
295
  * Either conferenceSolution and at least one entryPoint, or createRequest is required.
232
296
  */
233
- conferenceSolution?: ConferenceSolution;
297
+ conferenceSolution?:
298
+ ConferenceSolution;
234
299
  /**
235
300
  * A request to generate a new conference and attach it to the event. The data is generated asynchronously. To see whether the data is present check the status field.
236
301
  * Either conferenceSolution and at least one entryPoint, or createRequest is required.
237
302
  */
238
- createRequest?: CreateConferenceRequest;
303
+ createRequest?:
304
+ CreateConferenceRequest;
239
305
  /**
240
306
  * Information about individual conference entry points, such as URLs or phone numbers.
241
307
  * All of them must belong to the same conference.
242
308
  * Either conferenceSolution and at least one entryPoint, or createRequest is required.
243
309
  */
244
- entryPoints?: EntryPoint[];
310
+ entryPoints?:
311
+ EntryPoint[];
245
312
  /** Additional notes (such as instructions from the domain administrator, legal notices) to display to the user. Can contain HTML. The maximum length is 2048 characters. Optional. */
246
- notes?: string;
313
+ notes?:
314
+ string;
247
315
  /** Additional properties related to a conference. An example would be a solution-specific setting for enabling video streaming. */
248
- parameters?: ConferenceParameters;
316
+ parameters?:
317
+ ConferenceParameters;
249
318
  /**
250
319
  * The signature of the conference data.
251
320
  * Generated on server side.
252
321
  * Unset for a conference with a failed create request.
253
322
  * Optional for a conference with a pending create request.
254
323
  */
255
- signature?: string;
324
+ signature?:
325
+ string;
256
326
  }
257
327
  interface ConferenceParameters {
258
328
  /** Additional add-on specific data. */
259
- addOnParameters?: ConferenceParametersAddOnParameters;
329
+ addOnParameters?:
330
+ ConferenceParametersAddOnParameters;
260
331
  }
261
332
  interface ConferenceParametersAddOnParameters {
262
- parameters?: { [P in string]: string };
333
+ parameters?:
334
+ { [P in string]: string };
263
335
  }
264
336
  interface ConferenceProperties {
265
337
  /**
@@ -269,7 +341,8 @@ declare namespace gapi.client {
269
341
  * - "eventNamedHangout"
270
342
  * - "hangoutsMeet" Optional.
271
343
  */
272
- allowedConferenceSolutionTypes?: string[];
344
+ allowedConferenceSolutionTypes?:
345
+ string[];
273
346
  }
274
347
  interface ConferenceRequestStatus {
275
348
  /**
@@ -279,15 +352,19 @@ declare namespace gapi.client {
279
352
  * - "success": the conference create request succeeded, the entry points are populated.
280
353
  * - "failure": the conference create request failed, there are no entry points.
281
354
  */
282
- statusCode?: string;
355
+ statusCode?:
356
+ string;
283
357
  }
284
358
  interface ConferenceSolution {
285
359
  /** The user-visible icon for this solution. */
286
- iconUri?: string;
360
+ iconUri?:
361
+ string;
287
362
  /** The key which can uniquely identify the conference solution for this event. */
288
- key?: ConferenceSolutionKey;
363
+ key?:
364
+ ConferenceSolutionKey;
289
365
  /** The user-visible name of this solution. Not localized. */
290
- name?: string;
366
+ name?:
367
+ string;
291
368
  }
292
369
  interface ConferenceSolutionKey {
293
370
  /**
@@ -299,18 +376,22 @@ declare namespace gapi.client {
299
376
  * - "hangoutsMeet" for Google Meet (http://meet.google.com)
300
377
  * - "addOn" for 3P conference providers
301
378
  */
302
- type?: string;
379
+ type?:
380
+ string;
303
381
  }
304
382
  interface CreateConferenceRequest {
305
383
  /** The conference solution, such as Hangouts or Google Meet. */
306
- conferenceSolutionKey?: ConferenceSolutionKey;
384
+ conferenceSolutionKey?:
385
+ ConferenceSolutionKey;
307
386
  /**
308
387
  * The client-generated unique ID for this request.
309
388
  * Clients should regenerate this ID for every new request. If an ID provided is the same as for the previous request, the request is ignored.
310
389
  */
311
- requestId?: string;
390
+ requestId?:
391
+ string;
312
392
  /** The status of the conference create request. */
313
- status?: ConferenceRequestStatus;
393
+ status?:
394
+ ConferenceRequestStatus;
314
395
  }
315
396
  interface EntryPoint {
316
397
  /**
@@ -319,9 +400,11 @@ declare namespace gapi.client {
319
400
  * uses. Only the populated fields should be displayed.
320
401
  * Optional.
321
402
  */
322
- accessCode?: string;
403
+ accessCode?:
404
+ string;
323
405
  /** Features of the entry point, such as being toll or toll-free. One entry point can have multiple features. However, toll and toll-free cannot be both set on the same entry point. */
324
- entryPointFeatures?: string[];
406
+ entryPointFeatures?:
407
+ string[];
325
408
  /**
326
409
  * The type of the conference entry point.
327
410
  * Possible values are:
@@ -331,7 +414,8 @@ declare namespace gapi.client {
331
414
  * - "more" - further conference joining instructions, for example additional phone numbers. A conference can have zero or one more entry point. A conference with only a more entry
332
415
  * point is not a valid conference.
333
416
  */
334
- entryPointType?: string;
417
+ entryPointType?:
418
+ string;
335
419
  /**
336
420
  * The label for the URI. Visible to end users. Not localized. The maximum length is 512 characters.
337
421
  * Examples:
@@ -341,39 +425,45 @@ declare namespace gapi.client {
341
425
  * - for more: should not be filled
342
426
  * Optional.
343
427
  */
344
- label?: string;
428
+ label?:
429
+ string;
345
430
  /**
346
431
  * The meeting code to access the conference. The maximum length is 128 characters.
347
432
  * When creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider
348
433
  * uses. Only the populated fields should be displayed.
349
434
  * Optional.
350
435
  */
351
- meetingCode?: string;
436
+ meetingCode?:
437
+ string;
352
438
  /**
353
439
  * The passcode to access the conference. The maximum length is 128 characters.
354
440
  * When creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider
355
441
  * uses. Only the populated fields should be displayed.
356
442
  */
357
- passcode?: string;
443
+ passcode?:
444
+ string;
358
445
  /**
359
446
  * The password to access the conference. The maximum length is 128 characters.
360
447
  * When creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider
361
448
  * uses. Only the populated fields should be displayed.
362
449
  * Optional.
363
450
  */
364
- password?: string;
451
+ password?:
452
+ string;
365
453
  /**
366
454
  * The PIN to access the conference. The maximum length is 128 characters.
367
455
  * When creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider
368
456
  * uses. Only the populated fields should be displayed.
369
457
  * Optional.
370
458
  */
371
- pin?: string;
459
+ pin?:
460
+ string;
372
461
  /**
373
462
  * The CLDR/ISO 3166 region code for the country associated with this phone access. Example: "SE" for Sweden.
374
463
  * Calendar backend will populate this field only for EntryPointType.PHONE.
375
464
  */
376
- regionCode?: string;
465
+ regionCode?:
466
+ string;
377
467
  /**
378
468
  * The URI of the entry point. The maximum length is 1300 characters.
379
469
  * Format:
@@ -382,11 +472,13 @@ declare namespace gapi.client {
382
472
  * - for sip, sip: schema is required, e.g., sip:12345678@myprovider.com.
383
473
  * - for more, http: or https: schema is required.
384
474
  */
385
- uri?: string;
475
+ uri?:
476
+ string;
386
477
  }
387
478
  interface Error {
388
479
  /** Domain, or broad category, of the error. */
389
- domain?: string;
480
+ domain?:
481
+ string;
390
482
  /**
391
483
  * Specific reason for the error. Some of the possible values are:
392
484
  * - "groupTooBig" - The group of users requested is too large for a single query.
@@ -395,55 +487,72 @@ declare namespace gapi.client {
395
487
  * - "internalError" - The API service has encountered an internal error. Additional error types may be added in the future, so clients should gracefully handle additional error
396
488
  * statuses not included in this list.
397
489
  */
398
- reason?: string;
490
+ reason?:
491
+ string;
399
492
  }
400
493
  interface Event {
401
494
  /** Whether anyone can invite themselves to the event (deprecated). Optional. The default is False. */
402
- anyoneCanAddSelf?: boolean;
495
+ anyoneCanAddSelf?:
496
+ boolean;
403
497
  /**
404
498
  * File attachments for the event.
405
499
  * In order to modify attachments the supportsAttachments request parameter should be set to true.
406
500
  * There can be at most 25 attachments per event,
407
501
  */
408
- attachments?: EventAttachment[];
502
+ attachments?:
503
+ EventAttachment[];
409
504
  /**
410
505
  * The attendees of the event. See the Events with attendees guide for more information on scheduling events with other calendar users. Service accounts need to use domain-wide
411
506
  * delegation of authority to populate the attendee list.
412
507
  */
413
- attendees?: EventAttendee[];
508
+ attendees?:
509
+ EventAttendee[];
414
510
  /**
415
511
  * Whether attendees may have been omitted from the event's representation. When retrieving an event, this may be due to a restriction specified by the maxAttendee query parameter.
416
512
  * When updating an event, this can be used to only update the participant's response. Optional. The default is False.
417
513
  */
418
- attendeesOmitted?: boolean;
514
+ attendeesOmitted?:
515
+ boolean;
419
516
  /** The color of the event. This is an ID referring to an entry in the event section of the colors definition (see the colors endpoint). Optional. */
420
- colorId?: string;
517
+ colorId?:
518
+ string;
421
519
  /**
422
520
  * The conference-related information, such as details of a Google Meet conference. To create new conference details use the createRequest field. To persist your changes, remember to
423
521
  * set the conferenceDataVersion request parameter to 1 for all event modification requests.
424
522
  */
425
- conferenceData?: ConferenceData;
523
+ conferenceData?:
524
+ ConferenceData;
426
525
  /** Creation time of the event (as a RFC3339 timestamp). Read-only. */
427
- created?: string;
526
+ created?:
527
+ string;
428
528
  /** The creator of the event. Read-only. */
429
- creator?: {
430
- /** The creator's name, if available. */
431
- displayName?: string;
432
- /** The creator's email address, if available. */
433
- email?: string;
434
- /** The creator's Profile ID, if available. */
435
- id?: string;
436
- /** Whether the creator corresponds to the calendar on which this copy of the event appears. Read-only. The default is False. */
437
- self?: boolean;
438
- };
529
+ creator?:
530
+ {
531
+ /** The creator's name, if available. */
532
+ displayName?:
533
+ string;
534
+ /** The creator's email address, if available. */
535
+ email?:
536
+ string;
537
+ /** The creator's Profile ID, if available. */
538
+ id?:
539
+ string;
540
+ /** Whether the creator corresponds to the calendar on which this copy of the event appears. Read-only. The default is False. */
541
+ self?:
542
+ boolean;
543
+ };
439
544
  /** Description of the event. Can contain HTML. Optional. */
440
- description?: string;
545
+ description?:
546
+ string;
441
547
  /** The (exclusive) end time of the event. For a recurring event, this is the end time of the first instance. */
442
- end?: EventDateTime;
548
+ end?:
549
+ EventDateTime;
443
550
  /** Whether the end time is actually unspecified. An end time is still provided for compatibility reasons, even if this attribute is set to True. The default is False. */
444
- endTimeUnspecified?: boolean;
551
+ endTimeUnspecified?:
552
+ boolean;
445
553
  /** ETag of the resource. */
446
- etag?: string;
554
+ etag?:
555
+ string;
447
556
  /**
448
557
  * Specific type of the event. Read-only. Possible values are:
449
558
  * - "default" - A regular event or not further specified.
@@ -451,54 +560,73 @@ declare namespace gapi.client {
451
560
  * - "focusTime" - A focus-time event.
452
561
  * - "workingLocation" - A working location event. Developer Preview.
453
562
  */
454
- eventType?: string;
563
+ eventType?:
564
+ string;
455
565
  /** Extended properties of the event. */
456
- extendedProperties?: {
457
- /** Properties that are private to the copy of the event that appears on this calendar. */
458
- private?: { [P in string]: string };
459
- /** Properties that are shared between copies of the event on other attendees' calendars. */
460
- shared?: { [P in string]: string };
461
- };
566
+ extendedProperties?:
567
+ {
568
+ /** Properties that are private to the copy of the event that appears on this calendar. */
569
+ private?:
570
+ { [P in string]: string };
571
+ /** Properties that are shared between copies of the event on other attendees' calendars. */
572
+ shared?:
573
+ { [P in string]: string };
574
+ };
462
575
  /** A gadget that extends this event. Gadgets are deprecated; this structure is instead only used for returning birthday calendar metadata. */
463
- gadget?: {
464
- /**
465
- * The gadget's display mode. Deprecated. Possible values are:
466
- * - "icon" - The gadget displays next to the event's title in the calendar view.
467
- * - "chip" - The gadget displays when the event is clicked.
468
- */
469
- display?: string;
470
- /** The gadget's height in pixels. The height must be an integer greater than 0. Optional. Deprecated. */
471
- height?: number;
472
- /** The gadget's icon URL. The URL scheme must be HTTPS. Deprecated. */
473
- iconLink?: string;
474
- /** The gadget's URL. The URL scheme must be HTTPS. Deprecated. */
475
- link?: string;
476
- /** Preferences. */
477
- preferences?: { [P in string]: string };
478
- /** The gadget's title. Deprecated. */
479
- title?: string;
480
- /** The gadget's type. Deprecated. */
481
- type?: string;
482
- /** The gadget's width in pixels. The width must be an integer greater than 0. Optional. Deprecated. */
483
- width?: number;
484
- };
576
+ gadget?:
577
+ {
578
+ /**
579
+ * The gadget's display mode. Deprecated. Possible values are:
580
+ * - "icon" - The gadget displays next to the event's title in the calendar view.
581
+ * - "chip" - The gadget displays when the event is clicked.
582
+ */
583
+ display?:
584
+ string;
585
+ /** The gadget's height in pixels. The height must be an integer greater than 0. Optional. Deprecated. */
586
+ height?:
587
+ number;
588
+ /** The gadget's icon URL. The URL scheme must be HTTPS. Deprecated. */
589
+ iconLink?:
590
+ string;
591
+ /** The gadget's URL. The URL scheme must be HTTPS. Deprecated. */
592
+ link?:
593
+ string;
594
+ /** Preferences. */
595
+ preferences?:
596
+ { [P in string]: string };
597
+ /** The gadget's title. Deprecated. */
598
+ title?:
599
+ string;
600
+ /** The gadget's type. Deprecated. */
601
+ type?:
602
+ string;
603
+ /** The gadget's width in pixels. The width must be an integer greater than 0. Optional. Deprecated. */
604
+ width?:
605
+ number;
606
+ };
485
607
  /** Whether attendees other than the organizer can invite others to the event. Optional. The default is True. */
486
- guestsCanInviteOthers?: boolean;
608
+ guestsCanInviteOthers?:
609
+ boolean;
487
610
  /** Whether attendees other than the organizer can modify the event. Optional. The default is False. */
488
- guestsCanModify?: boolean;
611
+ guestsCanModify?:
612
+ boolean;
489
613
  /** Whether attendees other than the organizer can see who the event's attendees are. Optional. The default is True. */
490
- guestsCanSeeOtherGuests?: boolean;
614
+ guestsCanSeeOtherGuests?:
615
+ boolean;
491
616
  /** An absolute link to the Google Hangout associated with this event. Read-only. */
492
- hangoutLink?: string;
617
+ hangoutLink?:
618
+ string;
493
619
  /** An absolute link to this event in the Google Calendar Web UI. Read-only. */
494
- htmlLink?: string;
620
+ htmlLink?:
621
+ string;
495
622
  /**
496
623
  * Event unique identifier as defined in RFC5545. It is used to uniquely identify events accross calendaring systems and must be supplied when importing events via the import method.
497
624
  * Note that the iCalUID and the id are not identical and only one of them should be supplied at event creation time. One difference in their semantics is that in recurring events, all
498
625
  * occurrences of one event have different ids while they all share the same iCalUIDs. To retrieve an event using its iCalUID, call the events.list method using the iCalUID parameter.
499
626
  * To retrieve an event using its id, call the events.get method.
500
627
  */
501
- iCalUID?: string;
628
+ iCalUID?:
629
+ string;
502
630
  /**
503
631
  * Opaque identifier of the event. When creating new single or recurring events, you can specify their IDs. Provided IDs must follow these rules:
504
632
  * - characters allowed in the ID are those used in base32hex encoding, i.e. lowercase letters a-v and digits 0-9, see section 3.1.2 in RFC2938
@@ -509,68 +637,89 @@ declare namespace gapi.client {
509
637
  * Note that the icalUID and the id are not identical and only one of them should be supplied at event creation time. One difference in their semantics is that in recurring events, all
510
638
  * occurrences of one event have different ids while they all share the same icalUIDs.
511
639
  */
512
- id?: string;
640
+ id?:
641
+ string;
513
642
  /** Type of the resource ("calendar#event"). */
514
- kind?: string;
643
+ kind?:
644
+ string;
515
645
  /** Geographic location of the event as free-form text. Optional. */
516
- location?: string;
646
+ location?:
647
+ string;
517
648
  /**
518
649
  * Whether this is a locked event copy where no changes can be made to the main event fields "summary", "description", "location", "start", "end" or "recurrence". The default is False.
519
650
  * Read-Only.
520
651
  */
521
- locked?: boolean;
652
+ locked?:
653
+ boolean;
522
654
  /**
523
655
  * The organizer of the event. If the organizer is also an attendee, this is indicated with a separate entry in attendees with the organizer field set to True. To change the organizer,
524
656
  * use the move operation. Read-only, except when importing an event.
525
657
  */
526
- organizer?: {
527
- /** The organizer's name, if available. */
528
- displayName?: string;
529
- /** The organizer's email address, if available. It must be a valid email address as per RFC5322. */
530
- email?: string;
531
- /** The organizer's Profile ID, if available. */
532
- id?: string;
533
- /** Whether the organizer corresponds to the calendar on which this copy of the event appears. Read-only. The default is False. */
534
- self?: boolean;
535
- };
658
+ organizer?:
659
+ {
660
+ /** The organizer's name, if available. */
661
+ displayName?:
662
+ string;
663
+ /** The organizer's email address, if available. It must be a valid email address as per RFC5322. */
664
+ email?:
665
+ string;
666
+ /** The organizer's Profile ID, if available. */
667
+ id?:
668
+ string;
669
+ /** Whether the organizer corresponds to the calendar on which this copy of the event appears. Read-only. The default is False. */
670
+ self?:
671
+ boolean;
672
+ };
536
673
  /**
537
674
  * For an instance of a recurring event, this is the time at which this event would start according to the recurrence data in the recurring event identified by recurringEventId. It
538
675
  * uniquely identifies the instance within the recurring event series even if the instance was moved to a different time. Immutable.
539
676
  */
540
- originalStartTime?: EventDateTime;
677
+ originalStartTime?:
678
+ EventDateTime;
541
679
  /** If set to True, Event propagation is disabled. Note that it is not the same thing as Private event properties. Optional. Immutable. The default is False. */
542
- privateCopy?: boolean;
680
+ privateCopy?:
681
+ boolean;
543
682
  /**
544
683
  * List of RRULE, EXRULE, RDATE and EXDATE lines for a recurring event, as specified in RFC5545. Note that DTSTART and DTEND lines are not allowed in this field; event start and end
545
684
  * times are specified in the start and end fields. This field is omitted for single events or instances of recurring events.
546
685
  */
547
- recurrence?: string[];
686
+ recurrence?:
687
+ string[];
548
688
  /** For an instance of a recurring event, this is the id of the recurring event to which this instance belongs. Immutable. */
549
- recurringEventId?: string;
689
+ recurringEventId?:
690
+ string;
550
691
  /** Information about the event's reminders for the authenticated user. */
551
- reminders?: {
552
- /**
553
- * If the event doesn't use the default reminders, this lists the reminders specific to the event, or, if not set, indicates that no reminders are set for this event. The maximum
554
- * number of override reminders is 5.
555
- */
556
- overrides?: EventReminder[];
557
- /** Whether the default reminders of the calendar apply to the event. */
558
- useDefault?: boolean;
559
- };
692
+ reminders?:
693
+ {
694
+ /**
695
+ * If the event doesn't use the default reminders, this lists the reminders specific to the event, or, if not set, indicates that no reminders are set for this event. The
696
+ * maximum number of override reminders is 5.
697
+ */
698
+ overrides?:
699
+ EventReminder[];
700
+ /** Whether the default reminders of the calendar apply to the event. */
701
+ useDefault?:
702
+ boolean;
703
+ };
560
704
  /** Sequence number as per iCalendar. */
561
- sequence?: number;
705
+ sequence?:
706
+ number;
562
707
  /**
563
708
  * Source from which the event was created. For example, a web page, an email message or any document identifiable by an URL with HTTP or HTTPS scheme. Can only be seen or modified by
564
709
  * the creator of the event.
565
710
  */
566
- source?: {
567
- /** Title of the source; for example a title of a web page or an email subject. */
568
- title?: string;
569
- /** URL of the source pointing to a resource. The URL scheme must be HTTP or HTTPS. */
570
- url?: string;
571
- };
711
+ source?:
712
+ {
713
+ /** Title of the source; for example a title of a web page or an email subject. */
714
+ title?:
715
+ string;
716
+ /** URL of the source pointing to a resource. The URL scheme must be HTTP or HTTPS. */
717
+ url?:
718
+ string;
719
+ };
572
720
  /** The (inclusive) start time of the event. For a recurring event, this is the start time of the first instance. */
573
- start?: EventDateTime;
721
+ start?:
722
+ EventDateTime;
574
723
  /**
575
724
  * Status of the event. Optional. Possible values are:
576
725
  * - "confirmed" - The event is confirmed. This is the default status.
@@ -589,17 +738,21 @@ declare namespace gapi.client {
589
738
  * If an event changes its organizer (for example via the move operation) and the original organizer is not on the attendee list, it will leave behind a cancelled event where only the
590
739
  * id field is guaranteed to be populated.
591
740
  */
592
- status?: string;
741
+ status?:
742
+ string;
593
743
  /** Title of the event. */
594
- summary?: string;
744
+ summary?:
745
+ string;
595
746
  /**
596
747
  * Whether the event blocks time on the calendar. Optional. Possible values are:
597
748
  * - "opaque" - Default value. The event does block time on the calendar. This is equivalent to setting Show me as to Busy in the Calendar UI.
598
749
  * - "transparent" - The event does not block time on the calendar. This is equivalent to setting Show me as to Available in the Calendar UI.
599
750
  */
600
- transparency?: string;
751
+ transparency?:
752
+ string;
601
753
  /** Last modification time of the event (as a RFC3339 timestamp). Read-only. */
602
- updated?: string;
754
+ updated?:
755
+ string;
603
756
  /**
604
757
  * Visibility of the event. Optional. Possible values are:
605
758
  * - "default" - Uses the default visibility for events on the calendar. This is the default value.
@@ -607,49 +760,64 @@ declare namespace gapi.client {
607
760
  * - "private" - The event is private and only event attendees may view event details.
608
761
  * - "confidential" - The event is private. This value is provided for compatibility reasons.
609
762
  */
610
- visibility?: string;
763
+ visibility?:
764
+ string;
611
765
  /** Developer Preview: Working Location event data. Read-only. */
612
- workingLocationProperties?: EventWorkingLocationProperties;
766
+ workingLocationProperties?:
767
+ EventWorkingLocationProperties;
613
768
  }
614
769
  interface EventAttachment {
615
770
  /**
616
771
  * ID of the attached file. Read-only.
617
772
  * For Google Drive files, this is the ID of the corresponding Files resource entry in the Drive API.
618
773
  */
619
- fileId?: string;
774
+ fileId?:
775
+ string;
620
776
  /**
621
777
  * URL link to the attachment.
622
778
  * For adding Google Drive file attachments use the same format as in alternateLink property of the Files resource in the Drive API.
623
779
  * Required when adding an attachment.
624
780
  */
625
- fileUrl?: string;
781
+ fileUrl?:
782
+ string;
626
783
  /** URL link to the attachment's icon. This field can only be modified for custom third-party attachments. */
627
- iconLink?: string;
784
+ iconLink?:
785
+ string;
628
786
  /** Internet media type (MIME type) of the attachment. */
629
- mimeType?: string;
787
+ mimeType?:
788
+ string;
630
789
  /** Attachment title. */
631
- title?: string;
790
+ title?:
791
+ string;
632
792
  }
633
793
  interface EventAttendee {
634
794
  /** Number of additional guests. Optional. The default is 0. */
635
- additionalGuests?: number;
795
+ additionalGuests?:
796
+ number;
636
797
  /** The attendee's response comment. Optional. */
637
- comment?: string;
798
+ comment?:
799
+ string;
638
800
  /** The attendee's name, if available. Optional. */
639
- displayName?: string;
801
+ displayName?:
802
+ string;
640
803
  /**
641
804
  * The attendee's email address, if available. This field must be present when adding an attendee. It must be a valid email address as per RFC5322.
642
805
  * Required when adding an attendee.
643
806
  */
644
- email?: string;
807
+ email?:
808
+ string;
645
809
  /** The attendee's Profile ID, if available. */
646
- id?: string;
810
+ id?:
811
+ string;
647
812
  /** Whether this is an optional attendee. Optional. The default is False. */
648
- optional?: boolean;
813
+ optional?:
814
+ boolean;
649
815
  /** Whether the attendee is the organizer of the event. Read-only. The default is False. */
650
- organizer?: boolean;
816
+ organizer?:
817
+ boolean;
651
818
  /** Whether the attendee is a resource. Can only be set when the attendee is added to the event for the first time. Subsequent modifications are ignored. Optional. The default is False. */
652
- resource?: boolean;
819
+ resource?:
820
+ boolean;
653
821
  /**
654
822
  * The attendee's response status. Possible values are:
655
823
  * - "needsAction" - The attendee has not responded to the invitation (recommended for new events).
@@ -659,20 +827,25 @@ declare namespace gapi.client {
659
827
  * calendar" setting set to "When I respond to invitation in email" won't see an event on their calendar unless they choose to change their invitation response in the event invitation
660
828
  * email.
661
829
  */
662
- responseStatus?: string;
830
+ responseStatus?:
831
+ string;
663
832
  /** Whether this entry represents the calendar on which this copy of the event appears. Read-only. The default is False. */
664
- self?: boolean;
833
+ self?:
834
+ boolean;
665
835
  }
666
836
  interface EventDateTime {
667
837
  /** The date, in the format "yyyy-mm-dd", if this is an all-day event. */
668
- date?: string;
838
+ date?:
839
+ string;
669
840
  /** The time, as a combined date-time value (formatted according to RFC3339). A time zone offset is required unless a time zone is explicitly specified in timeZone. */
670
- dateTime?: string;
841
+ dateTime?:
842
+ string;
671
843
  /**
672
844
  * The time zone in which the time is specified. (Formatted as an IANA Time Zone Database name, e.g. "Europe/Zurich".) For recurring events this field is required and specifies the
673
845
  * time zone in which the recurrence is expanded. For single events this field is optional and indicates a custom time zone for the event start/end.
674
846
  */
675
- timeZone?: string;
847
+ timeZone?:
848
+ string;
676
849
  }
677
850
  interface EventReminder {
678
851
  /**
@@ -681,12 +854,14 @@ declare namespace gapi.client {
681
854
  * - "popup" - Reminders are sent via a UI popup.
682
855
  * Required when adding a reminder.
683
856
  */
684
- method?: string;
857
+ method?:
858
+ string;
685
859
  /**
686
860
  * Number of minutes before the start of the event when the reminder should trigger. Valid values are between 0 and 40320 (4 weeks in minutes).
687
861
  * Required when adding a reminder.
688
862
  */
689
- minutes?: number;
863
+ minutes?:
864
+ number;
690
865
  }
691
866
  interface Events {
692
867
  /**
@@ -697,256 +872,350 @@ declare namespace gapi.client {
697
872
  * - "writer" - The user has read and write access to the calendar. Private events will appear to users with writer access, and event details will be visible.
698
873
  * - "owner" - The user has ownership of the calendar. This role has all of the permissions of the writer role with the additional ability to see and manipulate ACLs.
699
874
  */
700
- accessRole?: string;
875
+ accessRole?:
876
+ string;
701
877
  /**
702
878
  * The default reminders on the calendar for the authenticated user. These reminders apply to all events on this calendar that do not explicitly override them (i.e. do not have
703
879
  * reminders.useDefault set to True).
704
880
  */
705
- defaultReminders?: EventReminder[];
881
+ defaultReminders?:
882
+ EventReminder[];
706
883
  /** Description of the calendar. Read-only. */
707
- description?: string;
884
+ description?:
885
+ string;
708
886
  /** ETag of the collection. */
709
- etag?: string;
887
+ etag?:
888
+ string;
710
889
  /** List of events on the calendar. */
711
- items?: Event[];
890
+ items?:
891
+ Event[];
712
892
  /** Type of the collection ("calendar#events"). */
713
- kind?: string;
893
+ kind?:
894
+ string;
714
895
  /** Token used to access the next page of this result. Omitted if no further results are available, in which case nextSyncToken is provided. */
715
- nextPageToken?: string;
896
+ nextPageToken?:
897
+ string;
716
898
  /**
717
899
  * Token used at a later point in time to retrieve only the entries that have changed since this result was returned. Omitted if further results are available, in which case
718
900
  * nextPageToken is provided.
719
901
  */
720
- nextSyncToken?: string;
902
+ nextSyncToken?:
903
+ string;
721
904
  /** Title of the calendar. Read-only. */
722
- summary?: string;
905
+ summary?:
906
+ string;
723
907
  /** The time zone of the calendar. Read-only. */
724
- timeZone?: string;
908
+ timeZone?:
909
+ string;
725
910
  /** Last modification time of the calendar (as a RFC3339 timestamp). Read-only. */
726
- updated?: string;
911
+ updated?:
912
+ string;
727
913
  }
728
914
  interface EventWorkingLocationProperties {
729
915
  /** If present, specifies that the user is working from a custom location. */
730
- customLocation?: {
731
- /** An optional extra label for additional information. */
732
- label?: string;
733
- };
916
+ customLocation?:
917
+ {
918
+ /** An optional extra label for additional information. */
919
+ label?:
920
+ string;
921
+ };
734
922
  /** If present, specifies that the user is working at home. */
735
- homeOffice?: any;
923
+ homeOffice?:
924
+ any;
736
925
  /** If present, specifies that the user is working from an office. */
737
- officeLocation?: {
738
- /** An optional building identifier. This should reference a building ID in the organization's Resources database. */
739
- buildingId?: string;
740
- /** An optional arbitrary desk identifier. */
741
- deskId?: string;
742
- /** An optional arbitrary floor identifier. */
743
- floorId?: string;
744
- /** An optional arbitrary floor section identifier. */
745
- floorSectionId?: string;
746
- /** An optional extra label for additional information. */
747
- label?: string;
748
- };
926
+ officeLocation?:
927
+ {
928
+ /** An optional building identifier. This should reference a building ID in the organization's Resources database. */
929
+ buildingId?:
930
+ string;
931
+ /** An optional arbitrary desk identifier. */
932
+ deskId?:
933
+ string;
934
+ /** An optional arbitrary floor identifier. */
935
+ floorId?:
936
+ string;
937
+ /** An optional arbitrary floor section identifier. */
938
+ floorSectionId?:
939
+ string;
940
+ /** An optional extra label for additional information. */
941
+ label?:
942
+ string;
943
+ };
749
944
  }
750
945
  interface FreeBusyCalendar {
751
946
  /** List of time ranges during which this calendar should be regarded as busy. */
752
- busy?: TimePeriod[];
947
+ busy?:
948
+ TimePeriod[];
753
949
  /** Optional error(s) (if computation for the calendar failed). */
754
- errors?: Error[];
950
+ errors?:
951
+ Error[];
755
952
  }
756
953
  interface FreeBusyGroup {
757
954
  /** List of calendars' identifiers within a group. */
758
- calendars?: string[];
955
+ calendars?:
956
+ string[];
759
957
  /** Optional error(s) (if computation for the group failed). */
760
- errors?: Error[];
958
+ errors?:
959
+ Error[];
761
960
  }
762
961
  interface FreeBusyRequest {
763
962
  /** Maximal number of calendars for which FreeBusy information is to be provided. Optional. Maximum value is 50. */
764
- calendarExpansionMax?: number;
963
+ calendarExpansionMax?:
964
+ number;
765
965
  /** Maximal number of calendar identifiers to be provided for a single group. Optional. An error is returned for a group with more members than this value. Maximum value is 100. */
766
- groupExpansionMax?: number;
966
+ groupExpansionMax?:
967
+ number;
767
968
  /** List of calendars and/or groups to query. */
768
- items?: FreeBusyRequestItem[];
969
+ items?:
970
+ FreeBusyRequestItem[];
769
971
  /** The end of the interval for the query formatted as per RFC3339. */
770
- timeMax?: string;
972
+ timeMax?:
973
+ string;
771
974
  /** The start of the interval for the query formatted as per RFC3339. */
772
- timeMin?: string;
975
+ timeMin?:
976
+ string;
773
977
  /** Time zone used in the response. Optional. The default is UTC. */
774
- timeZone?: string;
978
+ timeZone?:
979
+ string;
775
980
  }
776
981
  interface FreeBusyRequestItem {
777
982
  /** The identifier of a calendar or a group. */
778
- id?: string;
983
+ id?:
984
+ string;
779
985
  }
780
986
  interface FreeBusyResponse {
781
987
  /** List of free/busy information for calendars. */
782
- calendars?: { [P in string]: FreeBusyCalendar };
988
+ calendars?:
989
+ { [P in string]: FreeBusyCalendar };
783
990
  /** Expansion of groups. */
784
- groups?: { [P in string]: FreeBusyGroup };
991
+ groups?:
992
+ { [P in string]: FreeBusyGroup };
785
993
  /** Type of the resource ("calendar#freeBusy"). */
786
- kind?: string;
994
+ kind?:
995
+ string;
787
996
  /** The end of the interval. */
788
- timeMax?: string;
997
+ timeMax?:
998
+ string;
789
999
  /** The start of the interval. */
790
- timeMin?: string;
1000
+ timeMin?:
1001
+ string;
791
1002
  }
792
1003
  interface Setting {
793
1004
  /** ETag of the resource. */
794
- etag?: string;
1005
+ etag?:
1006
+ string;
795
1007
  /** The id of the user setting. */
796
- id?: string;
1008
+ id?:
1009
+ string;
797
1010
  /** Type of the resource ("calendar#setting"). */
798
- kind?: string;
1011
+ kind?:
1012
+ string;
799
1013
  /** Value of the user setting. The format of the value depends on the ID of the setting. It must always be a UTF-8 string of length up to 1024 characters. */
800
- value?: string;
1014
+ value?:
1015
+ string;
801
1016
  }
802
1017
  interface Settings {
803
1018
  /** Etag of the collection. */
804
- etag?: string;
1019
+ etag?:
1020
+ string;
805
1021
  /** List of user settings. */
806
- items?: Setting[];
1022
+ items?:
1023
+ Setting[];
807
1024
  /** Type of the collection ("calendar#settings"). */
808
- kind?: string;
1025
+ kind?:
1026
+ string;
809
1027
  /** Token used to access the next page of this result. Omitted if no further results are available, in which case nextSyncToken is provided. */
810
- nextPageToken?: string;
1028
+ nextPageToken?:
1029
+ string;
811
1030
  /**
812
1031
  * Token used at a later point in time to retrieve only the entries that have changed since this result was returned. Omitted if further results are available, in which case
813
1032
  * nextPageToken is provided.
814
1033
  */
815
- nextSyncToken?: string;
1034
+ nextSyncToken?:
1035
+ string;
816
1036
  }
817
1037
  interface TimePeriod {
818
1038
  /** The (exclusive) end of the time period. */
819
- end?: string;
1039
+ end?:
1040
+ string;
820
1041
  /** The (inclusive) start of the time period. */
821
- start?: string;
1042
+ start?:
1043
+ string;
822
1044
  }
823
1045
  interface AclResource {
824
1046
  /** Deletes an access control rule. */
825
1047
  delete(request?: {
826
1048
  /** Data format for the response. */
827
- alt?: string;
1049
+ alt?:
1050
+ string;
828
1051
  /**
829
1052
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
830
1053
  * keyword.
831
1054
  */
832
- calendarId: string;
1055
+ calendarId:
1056
+ string;
833
1057
  /** Selector specifying which fields to include in a partial response. */
834
- fields?: string;
1058
+ fields?:
1059
+ string;
835
1060
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
836
- key?: string;
1061
+ key?:
1062
+ string;
837
1063
  /** OAuth 2.0 token for the current user. */
838
- oauth_token?: string;
1064
+ oauth_token?:
1065
+ string;
839
1066
  /** Returns response with indentations and line breaks. */
840
- prettyPrint?: boolean;
1067
+ prettyPrint?:
1068
+ boolean;
841
1069
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
842
- quotaUser?: string;
1070
+ quotaUser?:
1071
+ string;
843
1072
  /** ACL rule identifier. */
844
- ruleId: string;
1073
+ ruleId:
1074
+ string;
845
1075
  /** Deprecated. Please use quotaUser instead. */
846
- userIp?: string;
1076
+ userIp?:
1077
+ string;
847
1078
  }): Request<void>;
848
1079
  /** Returns an access control rule. */
849
1080
  get(request?: {
850
1081
  /** Data format for the response. */
851
- alt?: string;
1082
+ alt?:
1083
+ string;
852
1084
  /**
853
1085
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
854
1086
  * keyword.
855
1087
  */
856
- calendarId: string;
1088
+ calendarId:
1089
+ string;
857
1090
  /** Selector specifying which fields to include in a partial response. */
858
- fields?: string;
1091
+ fields?:
1092
+ string;
859
1093
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
860
- key?: string;
1094
+ key?:
1095
+ string;
861
1096
  /** OAuth 2.0 token for the current user. */
862
- oauth_token?: string;
1097
+ oauth_token?:
1098
+ string;
863
1099
  /** Returns response with indentations and line breaks. */
864
- prettyPrint?: boolean;
1100
+ prettyPrint?:
1101
+ boolean;
865
1102
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
866
- quotaUser?: string;
1103
+ quotaUser?:
1104
+ string;
867
1105
  /** ACL rule identifier. */
868
- ruleId: string;
1106
+ ruleId:
1107
+ string;
869
1108
  /** Deprecated. Please use quotaUser instead. */
870
- userIp?: string;
1109
+ userIp?:
1110
+ string;
871
1111
  }): Request<AclRule>;
872
1112
  /** Creates an access control rule. */
873
1113
  insert(request: {
874
1114
  /** Data format for the response. */
875
- alt?: string;
1115
+ alt?:
1116
+ string;
876
1117
  /**
877
1118
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
878
1119
  * keyword.
879
1120
  */
880
- calendarId: string;
1121
+ calendarId:
1122
+ string;
881
1123
  /** Selector specifying which fields to include in a partial response. */
882
- fields?: string;
1124
+ fields?:
1125
+ string;
883
1126
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
884
- key?: string;
1127
+ key?:
1128
+ string;
885
1129
  /** OAuth 2.0 token for the current user. */
886
- oauth_token?: string;
1130
+ oauth_token?:
1131
+ string;
887
1132
  /** Returns response with indentations and line breaks. */
888
- prettyPrint?: boolean;
1133
+ prettyPrint?:
1134
+ boolean;
889
1135
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
890
- quotaUser?: string;
1136
+ quotaUser?:
1137
+ string;
891
1138
  /** Whether to send notifications about the calendar sharing change. Optional. The default is True. */
892
- sendNotifications?: boolean;
1139
+ sendNotifications?:
1140
+ boolean;
893
1141
  /** Deprecated. Please use quotaUser instead. */
894
- userIp?: string;
1142
+ userIp?:
1143
+ string;
895
1144
  /** Request body */
896
- resource: AclRule;
1145
+ resource:
1146
+ AclRule;
897
1147
  }): Request<AclRule>;
898
1148
  insert(request: {
899
1149
  /** Data format for the response. */
900
- alt?: string;
1150
+ alt?:
1151
+ string;
901
1152
  /**
902
1153
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
903
1154
  * keyword.
904
1155
  */
905
- calendarId: string;
1156
+ calendarId:
1157
+ string;
906
1158
  /** Selector specifying which fields to include in a partial response. */
907
- fields?: string;
1159
+ fields?:
1160
+ string;
908
1161
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
909
- key?: string;
1162
+ key?:
1163
+ string;
910
1164
  /** OAuth 2.0 token for the current user. */
911
- oauth_token?: string;
1165
+ oauth_token?:
1166
+ string;
912
1167
  /** Returns response with indentations and line breaks. */
913
- prettyPrint?: boolean;
1168
+ prettyPrint?:
1169
+ boolean;
914
1170
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
915
- quotaUser?: string;
1171
+ quotaUser?:
1172
+ string;
916
1173
  /** Whether to send notifications about the calendar sharing change. Optional. The default is True. */
917
- sendNotifications?: boolean;
1174
+ sendNotifications?:
1175
+ boolean;
918
1176
  /** Deprecated. Please use quotaUser instead. */
919
- userIp?: string;
1177
+ userIp?:
1178
+ string;
920
1179
  },
921
1180
  body: AclRule): Request<AclRule>;
922
1181
  /** Returns the rules in the access control list for the calendar. */
923
1182
  list(request?: {
924
1183
  /** Data format for the response. */
925
- alt?: string;
1184
+ alt?:
1185
+ string;
926
1186
  /**
927
1187
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
928
1188
  * keyword.
929
1189
  */
930
- calendarId: string;
1190
+ calendarId:
1191
+ string;
931
1192
  /** Selector specifying which fields to include in a partial response. */
932
- fields?: string;
1193
+ fields?:
1194
+ string;
933
1195
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
934
- key?: string;
1196
+ key?:
1197
+ string;
935
1198
  /** Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional. */
936
- maxResults?: number;
1199
+ maxResults?:
1200
+ number;
937
1201
  /** OAuth 2.0 token for the current user. */
938
- oauth_token?: string;
1202
+ oauth_token?:
1203
+ string;
939
1204
  /** Token specifying which result page to return. Optional. */
940
- pageToken?: string;
1205
+ pageToken?:
1206
+ string;
941
1207
  /** Returns response with indentations and line breaks. */
942
- prettyPrint?: boolean;
1208
+ prettyPrint?:
1209
+ boolean;
943
1210
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
944
- quotaUser?: string;
1211
+ quotaUser?:
1212
+ string;
945
1213
  /**
946
1214
  * Whether to include deleted ACLs in the result. Deleted ACLs are represented by role equal to "none". Deleted ACLs will always be included if syncToken is provided. Optional. The
947
1215
  * default is False.
948
1216
  */
949
- showDeleted?: boolean;
1217
+ showDeleted?:
1218
+ boolean;
950
1219
  /**
951
1220
  * Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries
952
1221
  * that have changed since then. All entries deleted since the previous list request will always be in the result set and it is not allowed to set showDeleted to False.
@@ -954,146 +1223,200 @@ declare namespace gapi.client {
954
1223
  * Learn more about incremental synchronization.
955
1224
  * Optional. The default is to return all entries.
956
1225
  */
957
- syncToken?: string;
1226
+ syncToken?:
1227
+ string;
958
1228
  /** Deprecated. Please use quotaUser instead. */
959
- userIp?: string;
1229
+ userIp?:
1230
+ string;
960
1231
  }): Request<Acl>;
961
1232
  /** Updates an access control rule. This method supports patch semantics. */
962
1233
  patch(request: {
963
1234
  /** Data format for the response. */
964
- alt?: string;
1235
+ alt?:
1236
+ string;
965
1237
  /**
966
1238
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
967
1239
  * keyword.
968
1240
  */
969
- calendarId: string;
1241
+ calendarId:
1242
+ string;
970
1243
  /** Selector specifying which fields to include in a partial response. */
971
- fields?: string;
1244
+ fields?:
1245
+ string;
972
1246
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
973
- key?: string;
1247
+ key?:
1248
+ string;
974
1249
  /** OAuth 2.0 token for the current user. */
975
- oauth_token?: string;
1250
+ oauth_token?:
1251
+ string;
976
1252
  /** Returns response with indentations and line breaks. */
977
- prettyPrint?: boolean;
1253
+ prettyPrint?:
1254
+ boolean;
978
1255
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
979
- quotaUser?: string;
1256
+ quotaUser?:
1257
+ string;
980
1258
  /** ACL rule identifier. */
981
- ruleId: string;
1259
+ ruleId:
1260
+ string;
982
1261
  /** Whether to send notifications about the calendar sharing change. Note that there are no notifications on access removal. Optional. The default is True. */
983
- sendNotifications?: boolean;
1262
+ sendNotifications?:
1263
+ boolean;
984
1264
  /** Deprecated. Please use quotaUser instead. */
985
- userIp?: string;
1265
+ userIp?:
1266
+ string;
986
1267
  /** Request body */
987
- resource: AclRule;
1268
+ resource:
1269
+ AclRule;
988
1270
  }): Request<AclRule>;
989
1271
  patch(request: {
990
1272
  /** Data format for the response. */
991
- alt?: string;
1273
+ alt?:
1274
+ string;
992
1275
  /**
993
1276
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
994
1277
  * keyword.
995
1278
  */
996
- calendarId: string;
1279
+ calendarId:
1280
+ string;
997
1281
  /** Selector specifying which fields to include in a partial response. */
998
- fields?: string;
1282
+ fields?:
1283
+ string;
999
1284
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1000
- key?: string;
1285
+ key?:
1286
+ string;
1001
1287
  /** OAuth 2.0 token for the current user. */
1002
- oauth_token?: string;
1288
+ oauth_token?:
1289
+ string;
1003
1290
  /** Returns response with indentations and line breaks. */
1004
- prettyPrint?: boolean;
1291
+ prettyPrint?:
1292
+ boolean;
1005
1293
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1006
- quotaUser?: string;
1294
+ quotaUser?:
1295
+ string;
1007
1296
  /** ACL rule identifier. */
1008
- ruleId: string;
1297
+ ruleId:
1298
+ string;
1009
1299
  /** Whether to send notifications about the calendar sharing change. Note that there are no notifications on access removal. Optional. The default is True. */
1010
- sendNotifications?: boolean;
1300
+ sendNotifications?:
1301
+ boolean;
1011
1302
  /** Deprecated. Please use quotaUser instead. */
1012
- userIp?: string;
1303
+ userIp?:
1304
+ string;
1013
1305
  },
1014
1306
  body: AclRule): Request<AclRule>;
1015
1307
  /** Updates an access control rule. */
1016
1308
  update(request: {
1017
1309
  /** Data format for the response. */
1018
- alt?: string;
1310
+ alt?:
1311
+ string;
1019
1312
  /**
1020
1313
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1021
1314
  * keyword.
1022
1315
  */
1023
- calendarId: string;
1316
+ calendarId:
1317
+ string;
1024
1318
  /** Selector specifying which fields to include in a partial response. */
1025
- fields?: string;
1319
+ fields?:
1320
+ string;
1026
1321
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1027
- key?: string;
1322
+ key?:
1323
+ string;
1028
1324
  /** OAuth 2.0 token for the current user. */
1029
- oauth_token?: string;
1325
+ oauth_token?:
1326
+ string;
1030
1327
  /** Returns response with indentations and line breaks. */
1031
- prettyPrint?: boolean;
1328
+ prettyPrint?:
1329
+ boolean;
1032
1330
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1033
- quotaUser?: string;
1331
+ quotaUser?:
1332
+ string;
1034
1333
  /** ACL rule identifier. */
1035
- ruleId: string;
1334
+ ruleId:
1335
+ string;
1036
1336
  /** Whether to send notifications about the calendar sharing change. Note that there are no notifications on access removal. Optional. The default is True. */
1037
- sendNotifications?: boolean;
1337
+ sendNotifications?:
1338
+ boolean;
1038
1339
  /** Deprecated. Please use quotaUser instead. */
1039
- userIp?: string;
1340
+ userIp?:
1341
+ string;
1040
1342
  /** Request body */
1041
- resource: AclRule;
1343
+ resource:
1344
+ AclRule;
1042
1345
  }): Request<AclRule>;
1043
1346
  update(request: {
1044
1347
  /** Data format for the response. */
1045
- alt?: string;
1348
+ alt?:
1349
+ string;
1046
1350
  /**
1047
1351
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1048
1352
  * keyword.
1049
1353
  */
1050
- calendarId: string;
1354
+ calendarId:
1355
+ string;
1051
1356
  /** Selector specifying which fields to include in a partial response. */
1052
- fields?: string;
1357
+ fields?:
1358
+ string;
1053
1359
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1054
- key?: string;
1360
+ key?:
1361
+ string;
1055
1362
  /** OAuth 2.0 token for the current user. */
1056
- oauth_token?: string;
1363
+ oauth_token?:
1364
+ string;
1057
1365
  /** Returns response with indentations and line breaks. */
1058
- prettyPrint?: boolean;
1366
+ prettyPrint?:
1367
+ boolean;
1059
1368
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1060
- quotaUser?: string;
1369
+ quotaUser?:
1370
+ string;
1061
1371
  /** ACL rule identifier. */
1062
- ruleId: string;
1372
+ ruleId:
1373
+ string;
1063
1374
  /** Whether to send notifications about the calendar sharing change. Note that there are no notifications on access removal. Optional. The default is True. */
1064
- sendNotifications?: boolean;
1375
+ sendNotifications?:
1376
+ boolean;
1065
1377
  /** Deprecated. Please use quotaUser instead. */
1066
- userIp?: string;
1378
+ userIp?:
1379
+ string;
1067
1380
  },
1068
1381
  body: AclRule): Request<AclRule>;
1069
1382
  /** Watch for changes to ACL resources. */
1070
1383
  watch(request: {
1071
1384
  /** Data format for the response. */
1072
- alt?: string;
1385
+ alt?:
1386
+ string;
1073
1387
  /**
1074
1388
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1075
1389
  * keyword.
1076
1390
  */
1077
- calendarId: string;
1391
+ calendarId:
1392
+ string;
1078
1393
  /** Selector specifying which fields to include in a partial response. */
1079
- fields?: string;
1394
+ fields?:
1395
+ string;
1080
1396
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1081
- key?: string;
1397
+ key?:
1398
+ string;
1082
1399
  /** Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional. */
1083
- maxResults?: number;
1400
+ maxResults?:
1401
+ number;
1084
1402
  /** OAuth 2.0 token for the current user. */
1085
- oauth_token?: string;
1403
+ oauth_token?:
1404
+ string;
1086
1405
  /** Token specifying which result page to return. Optional. */
1087
- pageToken?: string;
1406
+ pageToken?:
1407
+ string;
1088
1408
  /** Returns response with indentations and line breaks. */
1089
- prettyPrint?: boolean;
1409
+ prettyPrint?:
1410
+ boolean;
1090
1411
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1091
- quotaUser?: string;
1412
+ quotaUser?:
1413
+ string;
1092
1414
  /**
1093
1415
  * Whether to include deleted ACLs in the result. Deleted ACLs are represented by role equal to "none". Deleted ACLs will always be included if syncToken is provided. Optional. The
1094
1416
  * default is False.
1095
1417
  */
1096
- showDeleted?: boolean;
1418
+ showDeleted?:
1419
+ boolean;
1097
1420
  /**
1098
1421
  * Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries
1099
1422
  * that have changed since then. All entries deleted since the previous list request will always be in the result set and it is not allowed to set showDeleted to False.
@@ -1101,39 +1424,52 @@ declare namespace gapi.client {
1101
1424
  * Learn more about incremental synchronization.
1102
1425
  * Optional. The default is to return all entries.
1103
1426
  */
1104
- syncToken?: string;
1427
+ syncToken?:
1428
+ string;
1105
1429
  /** Deprecated. Please use quotaUser instead. */
1106
- userIp?: string;
1430
+ userIp?:
1431
+ string;
1107
1432
  /** Request body */
1108
- resource: Channel;
1433
+ resource:
1434
+ Channel;
1109
1435
  }): Request<Channel>;
1110
1436
  watch(request: {
1111
1437
  /** Data format for the response. */
1112
- alt?: string;
1438
+ alt?:
1439
+ string;
1113
1440
  /**
1114
1441
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1115
1442
  * keyword.
1116
1443
  */
1117
- calendarId: string;
1444
+ calendarId:
1445
+ string;
1118
1446
  /** Selector specifying which fields to include in a partial response. */
1119
- fields?: string;
1447
+ fields?:
1448
+ string;
1120
1449
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1121
- key?: string;
1450
+ key?:
1451
+ string;
1122
1452
  /** Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional. */
1123
- maxResults?: number;
1453
+ maxResults?:
1454
+ number;
1124
1455
  /** OAuth 2.0 token for the current user. */
1125
- oauth_token?: string;
1456
+ oauth_token?:
1457
+ string;
1126
1458
  /** Token specifying which result page to return. Optional. */
1127
- pageToken?: string;
1459
+ pageToken?:
1460
+ string;
1128
1461
  /** Returns response with indentations and line breaks. */
1129
- prettyPrint?: boolean;
1462
+ prettyPrint?:
1463
+ boolean;
1130
1464
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1131
- quotaUser?: string;
1465
+ quotaUser?:
1466
+ string;
1132
1467
  /**
1133
1468
  * Whether to include deleted ACLs in the result. Deleted ACLs are represented by role equal to "none". Deleted ACLs will always be included if syncToken is provided. Optional. The
1134
1469
  * default is False.
1135
1470
  */
1136
- showDeleted?: boolean;
1471
+ showDeleted?:
1472
+ boolean;
1137
1473
  /**
1138
1474
  * Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries
1139
1475
  * that have changed since then. All entries deleted since the previous list request will always be in the result set and it is not allowed to set showDeleted to False.
@@ -1141,9 +1477,11 @@ declare namespace gapi.client {
1141
1477
  * Learn more about incremental synchronization.
1142
1478
  * Optional. The default is to return all entries.
1143
1479
  */
1144
- syncToken?: string;
1480
+ syncToken?:
1481
+ string;
1145
1482
  /** Deprecated. Please use quotaUser instead. */
1146
- userIp?: string;
1483
+ userIp?:
1484
+ string;
1147
1485
  },
1148
1486
  body: Channel): Request<Channel>;
1149
1487
  }
@@ -1151,117 +1489,161 @@ declare namespace gapi.client {
1151
1489
  /** Removes a calendar from the user's calendar list. */
1152
1490
  delete(request?: {
1153
1491
  /** Data format for the response. */
1154
- alt?: string;
1492
+ alt?:
1493
+ string;
1155
1494
  /**
1156
1495
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1157
1496
  * keyword.
1158
1497
  */
1159
- calendarId: string;
1498
+ calendarId:
1499
+ string;
1160
1500
  /** Selector specifying which fields to include in a partial response. */
1161
- fields?: string;
1501
+ fields?:
1502
+ string;
1162
1503
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1163
- key?: string;
1504
+ key?:
1505
+ string;
1164
1506
  /** OAuth 2.0 token for the current user. */
1165
- oauth_token?: string;
1507
+ oauth_token?:
1508
+ string;
1166
1509
  /** Returns response with indentations and line breaks. */
1167
- prettyPrint?: boolean;
1510
+ prettyPrint?:
1511
+ boolean;
1168
1512
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1169
- quotaUser?: string;
1513
+ quotaUser?:
1514
+ string;
1170
1515
  /** Deprecated. Please use quotaUser instead. */
1171
- userIp?: string;
1516
+ userIp?:
1517
+ string;
1172
1518
  }): Request<void>;
1173
1519
  /** Returns a calendar from the user's calendar list. */
1174
1520
  get(request?: {
1175
1521
  /** Data format for the response. */
1176
- alt?: string;
1522
+ alt?:
1523
+ string;
1177
1524
  /**
1178
1525
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1179
1526
  * keyword.
1180
1527
  */
1181
- calendarId: string;
1528
+ calendarId:
1529
+ string;
1182
1530
  /** Selector specifying which fields to include in a partial response. */
1183
- fields?: string;
1531
+ fields?:
1532
+ string;
1184
1533
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1185
- key?: string;
1534
+ key?:
1535
+ string;
1186
1536
  /** OAuth 2.0 token for the current user. */
1187
- oauth_token?: string;
1537
+ oauth_token?:
1538
+ string;
1188
1539
  /** Returns response with indentations and line breaks. */
1189
- prettyPrint?: boolean;
1540
+ prettyPrint?:
1541
+ boolean;
1190
1542
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1191
- quotaUser?: string;
1543
+ quotaUser?:
1544
+ string;
1192
1545
  /** Deprecated. Please use quotaUser instead. */
1193
- userIp?: string;
1546
+ userIp?:
1547
+ string;
1194
1548
  }): Request<CalendarListEntry>;
1195
1549
  /** Inserts an existing calendar into the user's calendar list. */
1196
1550
  insert(request: {
1197
1551
  /** Data format for the response. */
1198
- alt?: string;
1552
+ alt?:
1553
+ string;
1199
1554
  /**
1200
1555
  * Whether to use the foregroundColor and backgroundColor fields to write the calendar colors (RGB). If this feature is used, the index-based colorId field will be set to the best
1201
1556
  * matching option automatically. Optional. The default is False.
1202
1557
  */
1203
- colorRgbFormat?: boolean;
1558
+ colorRgbFormat?:
1559
+ boolean;
1204
1560
  /** Selector specifying which fields to include in a partial response. */
1205
- fields?: string;
1561
+ fields?:
1562
+ string;
1206
1563
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1207
- key?: string;
1564
+ key?:
1565
+ string;
1208
1566
  /** OAuth 2.0 token for the current user. */
1209
- oauth_token?: string;
1567
+ oauth_token?:
1568
+ string;
1210
1569
  /** Returns response with indentations and line breaks. */
1211
- prettyPrint?: boolean;
1570
+ prettyPrint?:
1571
+ boolean;
1212
1572
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1213
- quotaUser?: string;
1573
+ quotaUser?:
1574
+ string;
1214
1575
  /** Deprecated. Please use quotaUser instead. */
1215
- userIp?: string;
1576
+ userIp?:
1577
+ string;
1216
1578
  /** Request body */
1217
- resource: CalendarListEntry;
1579
+ resource:
1580
+ CalendarListEntry;
1218
1581
  }): Request<CalendarListEntry>;
1219
1582
  insert(request: {
1220
1583
  /** Data format for the response. */
1221
- alt?: string;
1584
+ alt?:
1585
+ string;
1222
1586
  /**
1223
1587
  * Whether to use the foregroundColor and backgroundColor fields to write the calendar colors (RGB). If this feature is used, the index-based colorId field will be set to the best
1224
1588
  * matching option automatically. Optional. The default is False.
1225
1589
  */
1226
- colorRgbFormat?: boolean;
1590
+ colorRgbFormat?:
1591
+ boolean;
1227
1592
  /** Selector specifying which fields to include in a partial response. */
1228
- fields?: string;
1593
+ fields?:
1594
+ string;
1229
1595
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1230
- key?: string;
1596
+ key?:
1597
+ string;
1231
1598
  /** OAuth 2.0 token for the current user. */
1232
- oauth_token?: string;
1599
+ oauth_token?:
1600
+ string;
1233
1601
  /** Returns response with indentations and line breaks. */
1234
- prettyPrint?: boolean;
1602
+ prettyPrint?:
1603
+ boolean;
1235
1604
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1236
- quotaUser?: string;
1605
+ quotaUser?:
1606
+ string;
1237
1607
  /** Deprecated. Please use quotaUser instead. */
1238
- userIp?: string;
1608
+ userIp?:
1609
+ string;
1239
1610
  },
1240
1611
  body: CalendarListEntry): Request<CalendarListEntry>;
1241
1612
  /** Returns the calendars on the user's calendar list. */
1242
1613
  list(request?: {
1243
1614
  /** Data format for the response. */
1244
- alt?: string;
1615
+ alt?:
1616
+ string;
1245
1617
  /** Selector specifying which fields to include in a partial response. */
1246
- fields?: string;
1618
+ fields?:
1619
+ string;
1247
1620
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1248
- key?: string;
1621
+ key?:
1622
+ string;
1249
1623
  /** Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional. */
1250
- maxResults?: number;
1624
+ maxResults?:
1625
+ number;
1251
1626
  /** The minimum access role for the user in the returned entries. Optional. The default is no restriction. */
1252
- minAccessRole?: string;
1627
+ minAccessRole?:
1628
+ string;
1253
1629
  /** OAuth 2.0 token for the current user. */
1254
- oauth_token?: string;
1630
+ oauth_token?:
1631
+ string;
1255
1632
  /** Token specifying which result page to return. Optional. */
1256
- pageToken?: string;
1633
+ pageToken?:
1634
+ string;
1257
1635
  /** Returns response with indentations and line breaks. */
1258
- prettyPrint?: boolean;
1636
+ prettyPrint?:
1637
+ boolean;
1259
1638
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1260
- quotaUser?: string;
1639
+ quotaUser?:
1640
+ string;
1261
1641
  /** Whether to include deleted calendar list entries in the result. Optional. The default is False. */
1262
- showDeleted?: boolean;
1642
+ showDeleted?:
1643
+ boolean;
1263
1644
  /** Whether to show hidden entries. Optional. The default is False. */
1264
- showHidden?: boolean;
1645
+ showHidden?:
1646
+ boolean;
1265
1647
  /**
1266
1648
  * Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries
1267
1649
  * that have changed since then. If only read-only fields such as calendar properties or ACLs have changed, the entry won't be returned. All entries deleted and hidden since the
@@ -1271,146 +1653,197 @@ declare namespace gapi.client {
1271
1653
  * Learn more about incremental synchronization.
1272
1654
  * Optional. The default is to return all entries.
1273
1655
  */
1274
- syncToken?: string;
1656
+ syncToken?:
1657
+ string;
1275
1658
  /** Deprecated. Please use quotaUser instead. */
1276
- userIp?: string;
1659
+ userIp?:
1660
+ string;
1277
1661
  }): Request<CalendarList>;
1278
1662
  /** Updates an existing calendar on the user's calendar list. This method supports patch semantics. */
1279
1663
  patch(request: {
1280
1664
  /** Data format for the response. */
1281
- alt?: string;
1665
+ alt?:
1666
+ string;
1282
1667
  /**
1283
1668
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1284
1669
  * keyword.
1285
1670
  */
1286
- calendarId: string;
1671
+ calendarId:
1672
+ string;
1287
1673
  /**
1288
1674
  * Whether to use the foregroundColor and backgroundColor fields to write the calendar colors (RGB). If this feature is used, the index-based colorId field will be set to the best
1289
1675
  * matching option automatically. Optional. The default is False.
1290
1676
  */
1291
- colorRgbFormat?: boolean;
1677
+ colorRgbFormat?:
1678
+ boolean;
1292
1679
  /** Selector specifying which fields to include in a partial response. */
1293
- fields?: string;
1680
+ fields?:
1681
+ string;
1294
1682
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1295
- key?: string;
1683
+ key?:
1684
+ string;
1296
1685
  /** OAuth 2.0 token for the current user. */
1297
- oauth_token?: string;
1686
+ oauth_token?:
1687
+ string;
1298
1688
  /** Returns response with indentations and line breaks. */
1299
- prettyPrint?: boolean;
1689
+ prettyPrint?:
1690
+ boolean;
1300
1691
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1301
- quotaUser?: string;
1692
+ quotaUser?:
1693
+ string;
1302
1694
  /** Deprecated. Please use quotaUser instead. */
1303
- userIp?: string;
1695
+ userIp?:
1696
+ string;
1304
1697
  /** Request body */
1305
- resource: CalendarListEntry;
1698
+ resource:
1699
+ CalendarListEntry;
1306
1700
  }): Request<CalendarListEntry>;
1307
1701
  patch(request: {
1308
1702
  /** Data format for the response. */
1309
- alt?: string;
1703
+ alt?:
1704
+ string;
1310
1705
  /**
1311
1706
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1312
1707
  * keyword.
1313
1708
  */
1314
- calendarId: string;
1709
+ calendarId:
1710
+ string;
1315
1711
  /**
1316
1712
  * Whether to use the foregroundColor and backgroundColor fields to write the calendar colors (RGB). If this feature is used, the index-based colorId field will be set to the best
1317
1713
  * matching option automatically. Optional. The default is False.
1318
1714
  */
1319
- colorRgbFormat?: boolean;
1715
+ colorRgbFormat?:
1716
+ boolean;
1320
1717
  /** Selector specifying which fields to include in a partial response. */
1321
- fields?: string;
1718
+ fields?:
1719
+ string;
1322
1720
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1323
- key?: string;
1721
+ key?:
1722
+ string;
1324
1723
  /** OAuth 2.0 token for the current user. */
1325
- oauth_token?: string;
1724
+ oauth_token?:
1725
+ string;
1326
1726
  /** Returns response with indentations and line breaks. */
1327
- prettyPrint?: boolean;
1727
+ prettyPrint?:
1728
+ boolean;
1328
1729
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1329
- quotaUser?: string;
1730
+ quotaUser?:
1731
+ string;
1330
1732
  /** Deprecated. Please use quotaUser instead. */
1331
- userIp?: string;
1733
+ userIp?:
1734
+ string;
1332
1735
  },
1333
1736
  body: CalendarListEntry): Request<CalendarListEntry>;
1334
1737
  /** Updates an existing calendar on the user's calendar list. */
1335
1738
  update(request: {
1336
1739
  /** Data format for the response. */
1337
- alt?: string;
1740
+ alt?:
1741
+ string;
1338
1742
  /**
1339
1743
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1340
1744
  * keyword.
1341
1745
  */
1342
- calendarId: string;
1746
+ calendarId:
1747
+ string;
1343
1748
  /**
1344
1749
  * Whether to use the foregroundColor and backgroundColor fields to write the calendar colors (RGB). If this feature is used, the index-based colorId field will be set to the best
1345
1750
  * matching option automatically. Optional. The default is False.
1346
1751
  */
1347
- colorRgbFormat?: boolean;
1752
+ colorRgbFormat?:
1753
+ boolean;
1348
1754
  /** Selector specifying which fields to include in a partial response. */
1349
- fields?: string;
1755
+ fields?:
1756
+ string;
1350
1757
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1351
- key?: string;
1758
+ key?:
1759
+ string;
1352
1760
  /** OAuth 2.0 token for the current user. */
1353
- oauth_token?: string;
1761
+ oauth_token?:
1762
+ string;
1354
1763
  /** Returns response with indentations and line breaks. */
1355
- prettyPrint?: boolean;
1764
+ prettyPrint?:
1765
+ boolean;
1356
1766
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1357
- quotaUser?: string;
1767
+ quotaUser?:
1768
+ string;
1358
1769
  /** Deprecated. Please use quotaUser instead. */
1359
- userIp?: string;
1770
+ userIp?:
1771
+ string;
1360
1772
  /** Request body */
1361
- resource: CalendarListEntry;
1773
+ resource:
1774
+ CalendarListEntry;
1362
1775
  }): Request<CalendarListEntry>;
1363
1776
  update(request: {
1364
1777
  /** Data format for the response. */
1365
- alt?: string;
1778
+ alt?:
1779
+ string;
1366
1780
  /**
1367
1781
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1368
1782
  * keyword.
1369
1783
  */
1370
- calendarId: string;
1784
+ calendarId:
1785
+ string;
1371
1786
  /**
1372
1787
  * Whether to use the foregroundColor and backgroundColor fields to write the calendar colors (RGB). If this feature is used, the index-based colorId field will be set to the best
1373
1788
  * matching option automatically. Optional. The default is False.
1374
1789
  */
1375
- colorRgbFormat?: boolean;
1790
+ colorRgbFormat?:
1791
+ boolean;
1376
1792
  /** Selector specifying which fields to include in a partial response. */
1377
- fields?: string;
1793
+ fields?:
1794
+ string;
1378
1795
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1379
- key?: string;
1796
+ key?:
1797
+ string;
1380
1798
  /** OAuth 2.0 token for the current user. */
1381
- oauth_token?: string;
1799
+ oauth_token?:
1800
+ string;
1382
1801
  /** Returns response with indentations and line breaks. */
1383
- prettyPrint?: boolean;
1802
+ prettyPrint?:
1803
+ boolean;
1384
1804
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1385
- quotaUser?: string;
1805
+ quotaUser?:
1806
+ string;
1386
1807
  /** Deprecated. Please use quotaUser instead. */
1387
- userIp?: string;
1808
+ userIp?:
1809
+ string;
1388
1810
  },
1389
1811
  body: CalendarListEntry): Request<CalendarListEntry>;
1390
1812
  /** Watch for changes to CalendarList resources. */
1391
1813
  watch(request: {
1392
1814
  /** Data format for the response. */
1393
- alt?: string;
1815
+ alt?:
1816
+ string;
1394
1817
  /** Selector specifying which fields to include in a partial response. */
1395
- fields?: string;
1818
+ fields?:
1819
+ string;
1396
1820
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1397
- key?: string;
1821
+ key?:
1822
+ string;
1398
1823
  /** Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional. */
1399
- maxResults?: number;
1824
+ maxResults?:
1825
+ number;
1400
1826
  /** The minimum access role for the user in the returned entries. Optional. The default is no restriction. */
1401
- minAccessRole?: string;
1827
+ minAccessRole?:
1828
+ string;
1402
1829
  /** OAuth 2.0 token for the current user. */
1403
- oauth_token?: string;
1830
+ oauth_token?:
1831
+ string;
1404
1832
  /** Token specifying which result page to return. Optional. */
1405
- pageToken?: string;
1833
+ pageToken?:
1834
+ string;
1406
1835
  /** Returns response with indentations and line breaks. */
1407
- prettyPrint?: boolean;
1836
+ prettyPrint?:
1837
+ boolean;
1408
1838
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1409
- quotaUser?: string;
1839
+ quotaUser?:
1840
+ string;
1410
1841
  /** Whether to include deleted calendar list entries in the result. Optional. The default is False. */
1411
- showDeleted?: boolean;
1842
+ showDeleted?:
1843
+ boolean;
1412
1844
  /** Whether to show hidden entries. Optional. The default is False. */
1413
- showHidden?: boolean;
1845
+ showHidden?:
1846
+ boolean;
1414
1847
  /**
1415
1848
  * Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries
1416
1849
  * that have changed since then. If only read-only fields such as calendar properties or ACLs have changed, the entry won't be returned. All entries deleted and hidden since the
@@ -1420,35 +1853,49 @@ declare namespace gapi.client {
1420
1853
  * Learn more about incremental synchronization.
1421
1854
  * Optional. The default is to return all entries.
1422
1855
  */
1423
- syncToken?: string;
1856
+ syncToken?:
1857
+ string;
1424
1858
  /** Deprecated. Please use quotaUser instead. */
1425
- userIp?: string;
1859
+ userIp?:
1860
+ string;
1426
1861
  /** Request body */
1427
- resource: Channel;
1862
+ resource:
1863
+ Channel;
1428
1864
  }): Request<Channel>;
1429
1865
  watch(request: {
1430
1866
  /** Data format for the response. */
1431
- alt?: string;
1867
+ alt?:
1868
+ string;
1432
1869
  /** Selector specifying which fields to include in a partial response. */
1433
- fields?: string;
1870
+ fields?:
1871
+ string;
1434
1872
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1435
- key?: string;
1873
+ key?:
1874
+ string;
1436
1875
  /** Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional. */
1437
- maxResults?: number;
1876
+ maxResults?:
1877
+ number;
1438
1878
  /** The minimum access role for the user in the returned entries. Optional. The default is no restriction. */
1439
- minAccessRole?: string;
1879
+ minAccessRole?:
1880
+ string;
1440
1881
  /** OAuth 2.0 token for the current user. */
1441
- oauth_token?: string;
1882
+ oauth_token?:
1883
+ string;
1442
1884
  /** Token specifying which result page to return. Optional. */
1443
- pageToken?: string;
1885
+ pageToken?:
1886
+ string;
1444
1887
  /** Returns response with indentations and line breaks. */
1445
- prettyPrint?: boolean;
1888
+ prettyPrint?:
1889
+ boolean;
1446
1890
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1447
- quotaUser?: string;
1891
+ quotaUser?:
1892
+ string;
1448
1893
  /** Whether to include deleted calendar list entries in the result. Optional. The default is False. */
1449
- showDeleted?: boolean;
1894
+ showDeleted?:
1895
+ boolean;
1450
1896
  /** Whether to show hidden entries. Optional. The default is False. */
1451
- showHidden?: boolean;
1897
+ showHidden?:
1898
+ boolean;
1452
1899
  /**
1453
1900
  * Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries
1454
1901
  * that have changed since then. If only read-only fields such as calendar properties or ACLs have changed, the entry won't be returned. All entries deleted and hidden since the
@@ -1458,9 +1905,11 @@ declare namespace gapi.client {
1458
1905
  * Learn more about incremental synchronization.
1459
1906
  * Optional. The default is to return all entries.
1460
1907
  */
1461
- syncToken?: string;
1908
+ syncToken?:
1909
+ string;
1462
1910
  /** Deprecated. Please use quotaUser instead. */
1463
- userIp?: string;
1911
+ userIp?:
1912
+ string;
1464
1913
  },
1465
1914
  body: Channel): Request<Channel>;
1466
1915
  }
@@ -1468,195 +1917,268 @@ declare namespace gapi.client {
1468
1917
  /** Clears a primary calendar. This operation deletes all events associated with the primary calendar of an account. */
1469
1918
  clear(request?: {
1470
1919
  /** Data format for the response. */
1471
- alt?: string;
1920
+ alt?:
1921
+ string;
1472
1922
  /**
1473
1923
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1474
1924
  * keyword.
1475
1925
  */
1476
- calendarId: string;
1926
+ calendarId:
1927
+ string;
1477
1928
  /** Selector specifying which fields to include in a partial response. */
1478
- fields?: string;
1929
+ fields?:
1930
+ string;
1479
1931
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1480
- key?: string;
1932
+ key?:
1933
+ string;
1481
1934
  /** OAuth 2.0 token for the current user. */
1482
- oauth_token?: string;
1935
+ oauth_token?:
1936
+ string;
1483
1937
  /** Returns response with indentations and line breaks. */
1484
- prettyPrint?: boolean;
1938
+ prettyPrint?:
1939
+ boolean;
1485
1940
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1486
- quotaUser?: string;
1941
+ quotaUser?:
1942
+ string;
1487
1943
  /** Deprecated. Please use quotaUser instead. */
1488
- userIp?: string;
1944
+ userIp?:
1945
+ string;
1489
1946
  }): Request<void>;
1490
1947
  /** Deletes a secondary calendar. Use calendars.clear for clearing all events on primary calendars. */
1491
1948
  delete(request?: {
1492
1949
  /** Data format for the response. */
1493
- alt?: string;
1950
+ alt?:
1951
+ string;
1494
1952
  /**
1495
1953
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1496
1954
  * keyword.
1497
1955
  */
1498
- calendarId: string;
1956
+ calendarId:
1957
+ string;
1499
1958
  /** Selector specifying which fields to include in a partial response. */
1500
- fields?: string;
1959
+ fields?:
1960
+ string;
1501
1961
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1502
- key?: string;
1962
+ key?:
1963
+ string;
1503
1964
  /** OAuth 2.0 token for the current user. */
1504
- oauth_token?: string;
1965
+ oauth_token?:
1966
+ string;
1505
1967
  /** Returns response with indentations and line breaks. */
1506
- prettyPrint?: boolean;
1968
+ prettyPrint?:
1969
+ boolean;
1507
1970
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1508
- quotaUser?: string;
1971
+ quotaUser?:
1972
+ string;
1509
1973
  /** Deprecated. Please use quotaUser instead. */
1510
- userIp?: string;
1974
+ userIp?:
1975
+ string;
1511
1976
  }): Request<void>;
1512
1977
  /** Returns metadata for a calendar. */
1513
1978
  get(request?: {
1514
1979
  /** Data format for the response. */
1515
- alt?: string;
1980
+ alt?:
1981
+ string;
1516
1982
  /**
1517
1983
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1518
1984
  * keyword.
1519
1985
  */
1520
- calendarId: string;
1986
+ calendarId:
1987
+ string;
1521
1988
  /** Selector specifying which fields to include in a partial response. */
1522
- fields?: string;
1989
+ fields?:
1990
+ string;
1523
1991
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1524
- key?: string;
1992
+ key?:
1993
+ string;
1525
1994
  /** OAuth 2.0 token for the current user. */
1526
- oauth_token?: string;
1995
+ oauth_token?:
1996
+ string;
1527
1997
  /** Returns response with indentations and line breaks. */
1528
- prettyPrint?: boolean;
1998
+ prettyPrint?:
1999
+ boolean;
1529
2000
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1530
- quotaUser?: string;
2001
+ quotaUser?:
2002
+ string;
1531
2003
  /** Deprecated. Please use quotaUser instead. */
1532
- userIp?: string;
2004
+ userIp?:
2005
+ string;
1533
2006
  }): Request<Calendar>;
1534
2007
  /** Creates a secondary calendar. */
1535
2008
  insert(request: {
1536
2009
  /** Data format for the response. */
1537
- alt?: string;
2010
+ alt?:
2011
+ string;
1538
2012
  /** Selector specifying which fields to include in a partial response. */
1539
- fields?: string;
2013
+ fields?:
2014
+ string;
1540
2015
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1541
- key?: string;
2016
+ key?:
2017
+ string;
1542
2018
  /** OAuth 2.0 token for the current user. */
1543
- oauth_token?: string;
2019
+ oauth_token?:
2020
+ string;
1544
2021
  /** Returns response with indentations and line breaks. */
1545
- prettyPrint?: boolean;
2022
+ prettyPrint?:
2023
+ boolean;
1546
2024
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1547
- quotaUser?: string;
2025
+ quotaUser?:
2026
+ string;
1548
2027
  /** Deprecated. Please use quotaUser instead. */
1549
- userIp?: string;
2028
+ userIp?:
2029
+ string;
1550
2030
  /** Request body */
1551
- resource: Calendar;
2031
+ resource:
2032
+ Calendar;
1552
2033
  }): Request<Calendar>;
1553
2034
  insert(request: {
1554
2035
  /** Data format for the response. */
1555
- alt?: string;
2036
+ alt?:
2037
+ string;
1556
2038
  /** Selector specifying which fields to include in a partial response. */
1557
- fields?: string;
2039
+ fields?:
2040
+ string;
1558
2041
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1559
- key?: string;
2042
+ key?:
2043
+ string;
1560
2044
  /** OAuth 2.0 token for the current user. */
1561
- oauth_token?: string;
2045
+ oauth_token?:
2046
+ string;
1562
2047
  /** Returns response with indentations and line breaks. */
1563
- prettyPrint?: boolean;
2048
+ prettyPrint?:
2049
+ boolean;
1564
2050
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1565
- quotaUser?: string;
2051
+ quotaUser?:
2052
+ string;
1566
2053
  /** Deprecated. Please use quotaUser instead. */
1567
- userIp?: string;
2054
+ userIp?:
2055
+ string;
1568
2056
  },
1569
2057
  body: Calendar): Request<Calendar>;
1570
2058
  /** Updates metadata for a calendar. This method supports patch semantics. */
1571
2059
  patch(request: {
1572
2060
  /** Data format for the response. */
1573
- alt?: string;
2061
+ alt?:
2062
+ string;
1574
2063
  /**
1575
2064
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1576
2065
  * keyword.
1577
2066
  */
1578
- calendarId: string;
2067
+ calendarId:
2068
+ string;
1579
2069
  /** Selector specifying which fields to include in a partial response. */
1580
- fields?: string;
2070
+ fields?:
2071
+ string;
1581
2072
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1582
- key?: string;
2073
+ key?:
2074
+ string;
1583
2075
  /** OAuth 2.0 token for the current user. */
1584
- oauth_token?: string;
2076
+ oauth_token?:
2077
+ string;
1585
2078
  /** Returns response with indentations and line breaks. */
1586
- prettyPrint?: boolean;
2079
+ prettyPrint?:
2080
+ boolean;
1587
2081
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1588
- quotaUser?: string;
2082
+ quotaUser?:
2083
+ string;
1589
2084
  /** Deprecated. Please use quotaUser instead. */
1590
- userIp?: string;
2085
+ userIp?:
2086
+ string;
1591
2087
  /** Request body */
1592
- resource: Calendar;
2088
+ resource:
2089
+ Calendar;
1593
2090
  }): Request<Calendar>;
1594
2091
  patch(request: {
1595
2092
  /** Data format for the response. */
1596
- alt?: string;
2093
+ alt?:
2094
+ string;
1597
2095
  /**
1598
2096
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1599
2097
  * keyword.
1600
2098
  */
1601
- calendarId: string;
2099
+ calendarId:
2100
+ string;
1602
2101
  /** Selector specifying which fields to include in a partial response. */
1603
- fields?: string;
2102
+ fields?:
2103
+ string;
1604
2104
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1605
- key?: string;
2105
+ key?:
2106
+ string;
1606
2107
  /** OAuth 2.0 token for the current user. */
1607
- oauth_token?: string;
2108
+ oauth_token?:
2109
+ string;
1608
2110
  /** Returns response with indentations and line breaks. */
1609
- prettyPrint?: boolean;
2111
+ prettyPrint?:
2112
+ boolean;
1610
2113
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1611
- quotaUser?: string;
2114
+ quotaUser?:
2115
+ string;
1612
2116
  /** Deprecated. Please use quotaUser instead. */
1613
- userIp?: string;
2117
+ userIp?:
2118
+ string;
1614
2119
  },
1615
2120
  body: Calendar): Request<Calendar>;
1616
2121
  /** Updates metadata for a calendar. */
1617
2122
  update(request: {
1618
2123
  /** Data format for the response. */
1619
- alt?: string;
2124
+ alt?:
2125
+ string;
1620
2126
  /**
1621
2127
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1622
2128
  * keyword.
1623
2129
  */
1624
- calendarId: string;
2130
+ calendarId:
2131
+ string;
1625
2132
  /** Selector specifying which fields to include in a partial response. */
1626
- fields?: string;
2133
+ fields?:
2134
+ string;
1627
2135
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1628
- key?: string;
2136
+ key?:
2137
+ string;
1629
2138
  /** OAuth 2.0 token for the current user. */
1630
- oauth_token?: string;
2139
+ oauth_token?:
2140
+ string;
1631
2141
  /** Returns response with indentations and line breaks. */
1632
- prettyPrint?: boolean;
2142
+ prettyPrint?:
2143
+ boolean;
1633
2144
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1634
- quotaUser?: string;
2145
+ quotaUser?:
2146
+ string;
1635
2147
  /** Deprecated. Please use quotaUser instead. */
1636
- userIp?: string;
2148
+ userIp?:
2149
+ string;
1637
2150
  /** Request body */
1638
- resource: Calendar;
2151
+ resource:
2152
+ Calendar;
1639
2153
  }): Request<Calendar>;
1640
2154
  update(request: {
1641
2155
  /** Data format for the response. */
1642
- alt?: string;
2156
+ alt?:
2157
+ string;
1643
2158
  /**
1644
2159
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1645
2160
  * keyword.
1646
2161
  */
1647
- calendarId: string;
2162
+ calendarId:
2163
+ string;
1648
2164
  /** Selector specifying which fields to include in a partial response. */
1649
- fields?: string;
2165
+ fields?:
2166
+ string;
1650
2167
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1651
- key?: string;
2168
+ key?:
2169
+ string;
1652
2170
  /** OAuth 2.0 token for the current user. */
1653
- oauth_token?: string;
2171
+ oauth_token?:
2172
+ string;
1654
2173
  /** Returns response with indentations and line breaks. */
1655
- prettyPrint?: boolean;
2174
+ prettyPrint?:
2175
+ boolean;
1656
2176
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1657
- quotaUser?: string;
2177
+ quotaUser?:
2178
+ string;
1658
2179
  /** Deprecated. Please use quotaUser instead. */
1659
- userIp?: string;
2180
+ userIp?:
2181
+ string;
1660
2182
  },
1661
2183
  body: Calendar): Request<Calendar>;
1662
2184
  }
@@ -1664,37 +2186,52 @@ declare namespace gapi.client {
1664
2186
  /** Stop watching resources through this channel */
1665
2187
  stop(request: {
1666
2188
  /** Data format for the response. */
1667
- alt?: string;
2189
+ alt?:
2190
+ string;
1668
2191
  /** Selector specifying which fields to include in a partial response. */
1669
- fields?: string;
2192
+ fields?:
2193
+ string;
1670
2194
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1671
- key?: string;
2195
+ key?:
2196
+ string;
1672
2197
  /** OAuth 2.0 token for the current user. */
1673
- oauth_token?: string;
2198
+ oauth_token?:
2199
+ string;
1674
2200
  /** Returns response with indentations and line breaks. */
1675
- prettyPrint?: boolean;
2201
+ prettyPrint?:
2202
+ boolean;
1676
2203
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1677
- quotaUser?: string;
2204
+ quotaUser?:
2205
+ string;
1678
2206
  /** Deprecated. Please use quotaUser instead. */
1679
- userIp?: string;
2207
+ userIp?:
2208
+ string;
1680
2209
  /** Request body */
1681
- resource: Channel;
2210
+ resource:
2211
+ Channel;
1682
2212
  }): Request<void>;
1683
2213
  stop(request: {
1684
2214
  /** Data format for the response. */
1685
- alt?: string;
2215
+ alt?:
2216
+ string;
1686
2217
  /** Selector specifying which fields to include in a partial response. */
1687
- fields?: string;
2218
+ fields?:
2219
+ string;
1688
2220
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1689
- key?: string;
2221
+ key?:
2222
+ string;
1690
2223
  /** OAuth 2.0 token for the current user. */
1691
- oauth_token?: string;
2224
+ oauth_token?:
2225
+ string;
1692
2226
  /** Returns response with indentations and line breaks. */
1693
- prettyPrint?: boolean;
2227
+ prettyPrint?:
2228
+ boolean;
1694
2229
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1695
- quotaUser?: string;
2230
+ quotaUser?:
2231
+ string;
1696
2232
  /** Deprecated. Please use quotaUser instead. */
1697
- userIp?: string;
2233
+ userIp?:
2234
+ string;
1698
2235
  },
1699
2236
  body: Channel): Request<void>;
1700
2237
  }
@@ -1702,292 +2239,391 @@ declare namespace gapi.client {
1702
2239
  /** Returns the color definitions for calendars and events. */
1703
2240
  get(request?: {
1704
2241
  /** Data format for the response. */
1705
- alt?: string;
2242
+ alt?:
2243
+ string;
1706
2244
  /** Selector specifying which fields to include in a partial response. */
1707
- fields?: string;
2245
+ fields?:
2246
+ string;
1708
2247
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1709
- key?: string;
2248
+ key?:
2249
+ string;
1710
2250
  /** OAuth 2.0 token for the current user. */
1711
- oauth_token?: string;
2251
+ oauth_token?:
2252
+ string;
1712
2253
  /** Returns response with indentations and line breaks. */
1713
- prettyPrint?: boolean;
2254
+ prettyPrint?:
2255
+ boolean;
1714
2256
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1715
- quotaUser?: string;
2257
+ quotaUser?:
2258
+ string;
1716
2259
  /** Deprecated. Please use quotaUser instead. */
1717
- userIp?: string;
2260
+ userIp?:
2261
+ string;
1718
2262
  }): Request<Colors>;
1719
2263
  }
1720
2264
  interface EventsResource {
1721
2265
  /** Deletes an event. */
1722
2266
  delete(request?: {
1723
2267
  /** Data format for the response. */
1724
- alt?: string;
2268
+ alt?:
2269
+ string;
1725
2270
  /**
1726
2271
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1727
2272
  * keyword.
1728
2273
  */
1729
- calendarId: string;
2274
+ calendarId:
2275
+ string;
1730
2276
  /** Event identifier. */
1731
- eventId: string;
2277
+ eventId:
2278
+ string;
1732
2279
  /** Selector specifying which fields to include in a partial response. */
1733
- fields?: string;
2280
+ fields?:
2281
+ string;
1734
2282
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1735
- key?: string;
2283
+ key?:
2284
+ string;
1736
2285
  /** OAuth 2.0 token for the current user. */
1737
- oauth_token?: string;
2286
+ oauth_token?:
2287
+ string;
1738
2288
  /** Returns response with indentations and line breaks. */
1739
- prettyPrint?: boolean;
2289
+ prettyPrint?:
2290
+ boolean;
1740
2291
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1741
- quotaUser?: string;
2292
+ quotaUser?:
2293
+ string;
1742
2294
  /**
1743
2295
  * Deprecated. Please use sendUpdates instead.
1744
2296
  *
1745
2297
  * Whether to send notifications about the deletion of the event. Note that some emails might still be sent even if you set the value to false. The default is false.
1746
2298
  */
1747
- sendNotifications?: boolean;
2299
+ sendNotifications?:
2300
+ boolean;
1748
2301
  /** Guests who should receive notifications about the deletion of the event. */
1749
- sendUpdates?: string;
2302
+ sendUpdates?:
2303
+ string;
1750
2304
  /** Deprecated. Please use quotaUser instead. */
1751
- userIp?: string;
2305
+ userIp?:
2306
+ string;
1752
2307
  }): Request<void>;
1753
2308
  /** Returns an event based on its Google Calendar ID. To retrieve an event using its iCalendar ID, call the events.list method using the iCalUID parameter. */
1754
2309
  get(request?: {
1755
2310
  /** Data format for the response. */
1756
- alt?: string;
2311
+ alt?:
2312
+ string;
1757
2313
  /**
1758
2314
  * Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a
1759
2315
  * generated, non-working value will be provided).
1760
2316
  */
1761
- alwaysIncludeEmail?: boolean;
2317
+ alwaysIncludeEmail?:
2318
+ boolean;
1762
2319
  /**
1763
2320
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1764
2321
  * keyword.
1765
2322
  */
1766
- calendarId: string;
2323
+ calendarId:
2324
+ string;
1767
2325
  /** Event identifier. */
1768
- eventId: string;
2326
+ eventId:
2327
+ string;
1769
2328
  /** Selector specifying which fields to include in a partial response. */
1770
- fields?: string;
2329
+ fields?:
2330
+ string;
1771
2331
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1772
- key?: string;
2332
+ key?:
2333
+ string;
1773
2334
  /** The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. */
1774
- maxAttendees?: number;
2335
+ maxAttendees?:
2336
+ number;
1775
2337
  /** OAuth 2.0 token for the current user. */
1776
- oauth_token?: string;
2338
+ oauth_token?:
2339
+ string;
1777
2340
  /** Returns response with indentations and line breaks. */
1778
- prettyPrint?: boolean;
2341
+ prettyPrint?:
2342
+ boolean;
1779
2343
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1780
- quotaUser?: string;
2344
+ quotaUser?:
2345
+ string;
1781
2346
  /** Time zone used in the response. Optional. The default is the time zone of the calendar. */
1782
- timeZone?: string;
2347
+ timeZone?:
2348
+ string;
1783
2349
  /** Deprecated. Please use quotaUser instead. */
1784
- userIp?: string;
2350
+ userIp?:
2351
+ string;
1785
2352
  }): Request<Event>;
1786
2353
  /** Imports an event. This operation is used to add a private copy of an existing event to a calendar. */
1787
2354
  import(request: {
1788
2355
  /** Data format for the response. */
1789
- alt?: string;
2356
+ alt?:
2357
+ string;
1790
2358
  /**
1791
2359
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1792
2360
  * keyword.
1793
2361
  */
1794
- calendarId: string;
2362
+ calendarId:
2363
+ string;
1795
2364
  /**
1796
2365
  * Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables
1797
2366
  * support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0.
1798
2367
  */
1799
- conferenceDataVersion?: number;
2368
+ conferenceDataVersion?:
2369
+ number;
1800
2370
  /** Selector specifying which fields to include in a partial response. */
1801
- fields?: string;
2371
+ fields?:
2372
+ string;
1802
2373
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1803
- key?: string;
2374
+ key?:
2375
+ string;
1804
2376
  /** OAuth 2.0 token for the current user. */
1805
- oauth_token?: string;
2377
+ oauth_token?:
2378
+ string;
1806
2379
  /** Returns response with indentations and line breaks. */
1807
- prettyPrint?: boolean;
2380
+ prettyPrint?:
2381
+ boolean;
1808
2382
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1809
- quotaUser?: string;
2383
+ quotaUser?:
2384
+ string;
1810
2385
  /** Whether API client performing operation supports event attachments. Optional. The default is False. */
1811
- supportsAttachments?: boolean;
2386
+ supportsAttachments?:
2387
+ boolean;
1812
2388
  /** Deprecated. Please use quotaUser instead. */
1813
- userIp?: string;
2389
+ userIp?:
2390
+ string;
1814
2391
  /** Request body */
1815
- resource: Event;
2392
+ resource:
2393
+ Event;
1816
2394
  }): Request<Event>;
1817
2395
  import(request: {
1818
2396
  /** Data format for the response. */
1819
- alt?: string;
2397
+ alt?:
2398
+ string;
1820
2399
  /**
1821
2400
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1822
2401
  * keyword.
1823
2402
  */
1824
- calendarId: string;
2403
+ calendarId:
2404
+ string;
1825
2405
  /**
1826
2406
  * Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables
1827
2407
  * support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0.
1828
2408
  */
1829
- conferenceDataVersion?: number;
2409
+ conferenceDataVersion?:
2410
+ number;
1830
2411
  /** Selector specifying which fields to include in a partial response. */
1831
- fields?: string;
2412
+ fields?:
2413
+ string;
1832
2414
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1833
- key?: string;
2415
+ key?:
2416
+ string;
1834
2417
  /** OAuth 2.0 token for the current user. */
1835
- oauth_token?: string;
2418
+ oauth_token?:
2419
+ string;
1836
2420
  /** Returns response with indentations and line breaks. */
1837
- prettyPrint?: boolean;
2421
+ prettyPrint?:
2422
+ boolean;
1838
2423
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1839
- quotaUser?: string;
2424
+ quotaUser?:
2425
+ string;
1840
2426
  /** Whether API client performing operation supports event attachments. Optional. The default is False. */
1841
- supportsAttachments?: boolean;
2427
+ supportsAttachments?:
2428
+ boolean;
1842
2429
  /** Deprecated. Please use quotaUser instead. */
1843
- userIp?: string;
2430
+ userIp?:
2431
+ string;
1844
2432
  },
1845
2433
  body: Event): Request<Event>;
1846
2434
  /** Creates an event. */
1847
2435
  insert(request: {
1848
2436
  /** Data format for the response. */
1849
- alt?: string;
2437
+ alt?:
2438
+ string;
1850
2439
  /**
1851
2440
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1852
2441
  * keyword.
1853
2442
  */
1854
- calendarId: string;
2443
+ calendarId:
2444
+ string;
1855
2445
  /**
1856
2446
  * Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables
1857
2447
  * support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0.
1858
2448
  */
1859
- conferenceDataVersion?: number;
2449
+ conferenceDataVersion?:
2450
+ number;
1860
2451
  /** Selector specifying which fields to include in a partial response. */
1861
- fields?: string;
2452
+ fields?:
2453
+ string;
1862
2454
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1863
- key?: string;
2455
+ key?:
2456
+ string;
1864
2457
  /** The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. */
1865
- maxAttendees?: number;
2458
+ maxAttendees?:
2459
+ number;
1866
2460
  /** OAuth 2.0 token for the current user. */
1867
- oauth_token?: string;
2461
+ oauth_token?:
2462
+ string;
1868
2463
  /** Returns response with indentations and line breaks. */
1869
- prettyPrint?: boolean;
2464
+ prettyPrint?:
2465
+ boolean;
1870
2466
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1871
- quotaUser?: string;
2467
+ quotaUser?:
2468
+ string;
1872
2469
  /**
1873
2470
  * Deprecated. Please use sendUpdates instead.
1874
2471
  *
1875
2472
  * Whether to send notifications about the creation of the new event. Note that some emails might still be sent even if you set the value to false. The default is false.
1876
2473
  */
1877
- sendNotifications?: boolean;
2474
+ sendNotifications?:
2475
+ boolean;
1878
2476
  /** Whether to send notifications about the creation of the new event. Note that some emails might still be sent. The default is false. */
1879
- sendUpdates?: string;
2477
+ sendUpdates?:
2478
+ string;
1880
2479
  /** Whether API client performing operation supports event attachments. Optional. The default is False. */
1881
- supportsAttachments?: boolean;
2480
+ supportsAttachments?:
2481
+ boolean;
1882
2482
  /** Deprecated. Please use quotaUser instead. */
1883
- userIp?: string;
2483
+ userIp?:
2484
+ string;
1884
2485
  /** Request body */
1885
- resource: Event;
2486
+ resource:
2487
+ Event;
1886
2488
  }): Request<Event>;
1887
2489
  insert(request: {
1888
2490
  /** Data format for the response. */
1889
- alt?: string;
2491
+ alt?:
2492
+ string;
1890
2493
  /**
1891
2494
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1892
2495
  * keyword.
1893
2496
  */
1894
- calendarId: string;
2497
+ calendarId:
2498
+ string;
1895
2499
  /**
1896
2500
  * Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables
1897
2501
  * support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0.
1898
2502
  */
1899
- conferenceDataVersion?: number;
2503
+ conferenceDataVersion?:
2504
+ number;
1900
2505
  /** Selector specifying which fields to include in a partial response. */
1901
- fields?: string;
2506
+ fields?:
2507
+ string;
1902
2508
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1903
- key?: string;
2509
+ key?:
2510
+ string;
1904
2511
  /** The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. */
1905
- maxAttendees?: number;
2512
+ maxAttendees?:
2513
+ number;
1906
2514
  /** OAuth 2.0 token for the current user. */
1907
- oauth_token?: string;
2515
+ oauth_token?:
2516
+ string;
1908
2517
  /** Returns response with indentations and line breaks. */
1909
- prettyPrint?: boolean;
2518
+ prettyPrint?:
2519
+ boolean;
1910
2520
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1911
- quotaUser?: string;
2521
+ quotaUser?:
2522
+ string;
1912
2523
  /**
1913
2524
  * Deprecated. Please use sendUpdates instead.
1914
2525
  *
1915
2526
  * Whether to send notifications about the creation of the new event. Note that some emails might still be sent even if you set the value to false. The default is false.
1916
2527
  */
1917
- sendNotifications?: boolean;
2528
+ sendNotifications?:
2529
+ boolean;
1918
2530
  /** Whether to send notifications about the creation of the new event. Note that some emails might still be sent. The default is false. */
1919
- sendUpdates?: string;
2531
+ sendUpdates?:
2532
+ string;
1920
2533
  /** Whether API client performing operation supports event attachments. Optional. The default is False. */
1921
- supportsAttachments?: boolean;
2534
+ supportsAttachments?:
2535
+ boolean;
1922
2536
  /** Deprecated. Please use quotaUser instead. */
1923
- userIp?: string;
2537
+ userIp?:
2538
+ string;
1924
2539
  },
1925
2540
  body: Event): Request<Event>;
1926
2541
  /** Returns instances of the specified recurring event. */
1927
2542
  instances(request?: {
1928
2543
  /** Data format for the response. */
1929
- alt?: string;
2544
+ alt?:
2545
+ string;
1930
2546
  /**
1931
2547
  * Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a
1932
2548
  * generated, non-working value will be provided).
1933
2549
  */
1934
- alwaysIncludeEmail?: boolean;
2550
+ alwaysIncludeEmail?:
2551
+ boolean;
1935
2552
  /**
1936
2553
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1937
2554
  * keyword.
1938
2555
  */
1939
- calendarId: string;
2556
+ calendarId:
2557
+ string;
1940
2558
  /** Recurring event identifier. */
1941
- eventId: string;
2559
+ eventId:
2560
+ string;
1942
2561
  /** Selector specifying which fields to include in a partial response. */
1943
- fields?: string;
2562
+ fields?:
2563
+ string;
1944
2564
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1945
- key?: string;
2565
+ key?:
2566
+ string;
1946
2567
  /** The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. */
1947
- maxAttendees?: number;
2568
+ maxAttendees?:
2569
+ number;
1948
2570
  /** Maximum number of events returned on one result page. By default the value is 250 events. The page size can never be larger than 2500 events. Optional. */
1949
- maxResults?: number;
2571
+ maxResults?:
2572
+ number;
1950
2573
  /** OAuth 2.0 token for the current user. */
1951
- oauth_token?: string;
2574
+ oauth_token?:
2575
+ string;
1952
2576
  /** The original start time of the instance in the result. Optional. */
1953
- originalStart?: string;
2577
+ originalStart?:
2578
+ string;
1954
2579
  /** Token specifying which result page to return. Optional. */
1955
- pageToken?: string;
2580
+ pageToken?:
2581
+ string;
1956
2582
  /** Returns response with indentations and line breaks. */
1957
- prettyPrint?: boolean;
2583
+ prettyPrint?:
2584
+ boolean;
1958
2585
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
1959
- quotaUser?: string;
2586
+ quotaUser?:
2587
+ string;
1960
2588
  /**
1961
2589
  * Whether to include deleted events (with status equals "cancelled") in the result. Cancelled instances of recurring events will still be included if singleEvents is False.
1962
2590
  * Optional. The default is False.
1963
2591
  */
1964
- showDeleted?: boolean;
2592
+ showDeleted?:
2593
+ boolean;
1965
2594
  /**
1966
2595
  * Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone
1967
2596
  * offset.
1968
2597
  */
1969
- timeMax?: string;
2598
+ timeMax?:
2599
+ string;
1970
2600
  /** Lower bound (inclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset. */
1971
- timeMin?: string;
2601
+ timeMin?:
2602
+ string;
1972
2603
  /** Time zone used in the response. Optional. The default is the time zone of the calendar. */
1973
- timeZone?: string;
2604
+ timeZone?:
2605
+ string;
1974
2606
  /** Deprecated. Please use quotaUser instead. */
1975
- userIp?: string;
2607
+ userIp?:
2608
+ string;
1976
2609
  }): Request<Events>;
1977
2610
  /** Returns events on the specified calendar. */
1978
2611
  list(request?: {
1979
2612
  /** Data format for the response. */
1980
- alt?: string;
2613
+ alt?:
2614
+ string;
1981
2615
  /**
1982
2616
  * Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a
1983
2617
  * generated, non-working value will be provided).
1984
2618
  */
1985
- alwaysIncludeEmail?: boolean;
2619
+ alwaysIncludeEmail?:
2620
+ boolean;
1986
2621
  /**
1987
2622
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
1988
2623
  * keyword.
1989
2624
  */
1990
- calendarId: string;
2625
+ calendarId:
2626
+ string;
1991
2627
  /**
1992
2628
  * Event types to return. Optional. Possible values are:
1993
2629
  * - "default"
@@ -1999,56 +2635,73 @@ declare namespace gapi.client {
1999
2635
  * - ["default", "focusTime", "outOfOffice", "workingLocation"]
2000
2636
  * - ["workingLocation"] Additional combinations of these 4 event types will be made available in later releases. Developer Preview.
2001
2637
  */
2002
- eventTypes?: string | string[];
2638
+ eventTypes?:
2639
+ string | string[];
2003
2640
  /** Selector specifying which fields to include in a partial response. */
2004
- fields?: string;
2641
+ fields?:
2642
+ string;
2005
2643
  /** Specifies an event ID in the iCalendar format to be provided in the response. Optional. Use this if you want to search for an event by its iCalendar ID. */
2006
- iCalUID?: string;
2644
+ iCalUID?:
2645
+ string;
2007
2646
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2008
- key?: string;
2647
+ key?:
2648
+ string;
2009
2649
  /** The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. */
2010
- maxAttendees?: number;
2650
+ maxAttendees?:
2651
+ number;
2011
2652
  /**
2012
2653
  * Maximum number of events returned on one result page. The number of events in the resulting page may be less than this value, or none at all, even if there are more events
2013
2654
  * matching the query. Incomplete pages can be detected by a non-empty nextPageToken field in the response. By default the value is 250 events. The page size can never be larger
2014
2655
  * than 2500 events. Optional.
2015
2656
  */
2016
- maxResults?: number;
2657
+ maxResults?:
2658
+ number;
2017
2659
  /** OAuth 2.0 token for the current user. */
2018
- oauth_token?: string;
2660
+ oauth_token?:
2661
+ string;
2019
2662
  /** The order of the events returned in the result. Optional. The default is an unspecified, stable order. */
2020
- orderBy?: string;
2663
+ orderBy?:
2664
+ string;
2021
2665
  /** Token specifying which result page to return. Optional. */
2022
- pageToken?: string;
2666
+ pageToken?:
2667
+ string;
2023
2668
  /** Returns response with indentations and line breaks. */
2024
- prettyPrint?: boolean;
2669
+ prettyPrint?:
2670
+ boolean;
2025
2671
  /**
2026
2672
  * Extended properties constraint specified as propertyName=value. Matches only private properties. This parameter might be repeated multiple times to return events that match all
2027
2673
  * given constraints.
2028
2674
  */
2029
- privateExtendedProperty?: string | string[];
2675
+ privateExtendedProperty?:
2676
+ string | string[];
2030
2677
  /** Free text search terms to find events that match these terms in the following fields: summary, description, location, attendee's displayName, attendee's email. Optional. */
2031
- q?: string;
2678
+ q?:
2679
+ string;
2032
2680
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2033
- quotaUser?: string;
2681
+ quotaUser?:
2682
+ string;
2034
2683
  /**
2035
2684
  * Extended properties constraint specified as propertyName=value. Matches only shared properties. This parameter might be repeated multiple times to return events that match all
2036
2685
  * given constraints.
2037
2686
  */
2038
- sharedExtendedProperty?: string | string[];
2687
+ sharedExtendedProperty?:
2688
+ string | string[];
2039
2689
  /**
2040
2690
  * Whether to include deleted events (with status equals "cancelled") in the result. Cancelled instances of recurring events (but not the underlying recurring event) will still be
2041
2691
  * included if showDeleted and singleEvents are both False. If showDeleted and singleEvents are both True, only single instances of deleted events (but not the underlying recurring
2042
2692
  * events) are returned. Optional. The default is False.
2043
2693
  */
2044
- showDeleted?: boolean;
2694
+ showDeleted?:
2695
+ boolean;
2045
2696
  /** Whether to include hidden invitations in the result. Optional. The default is False. */
2046
- showHiddenInvitations?: boolean;
2697
+ showHiddenInvitations?:
2698
+ boolean;
2047
2699
  /**
2048
2700
  * Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves.
2049
2701
  * Optional. The default is False.
2050
2702
  */
2051
- singleEvents?: boolean;
2703
+ singleEvents?:
2704
+ boolean;
2052
2705
  /**
2053
2706
  * Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries
2054
2707
  * that have changed since then. All events deleted since the previous list request will always be in the result set and it is not allowed to set showDeleted to False.
@@ -2067,296 +2720,390 @@ declare namespace gapi.client {
2067
2720
  * Learn more about incremental synchronization.
2068
2721
  * Optional. The default is to return all entries.
2069
2722
  */
2070
- syncToken?: string;
2723
+ syncToken?:
2724
+ string;
2071
2725
  /**
2072
2726
  * Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone
2073
2727
  * offset, for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but are ignored. If timeMin is set, timeMax must be greater than timeMin.
2074
2728
  */
2075
- timeMax?: string;
2729
+ timeMax?:
2730
+ string;
2076
2731
  /**
2077
2732
  * Lower bound (exclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset,
2078
2733
  * for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but are ignored. If timeMax is set, timeMin must be smaller than timeMax.
2079
2734
  */
2080
- timeMin?: string;
2735
+ timeMin?:
2736
+ string;
2081
2737
  /** Time zone used in the response. Optional. The default is the time zone of the calendar. */
2082
- timeZone?: string;
2738
+ timeZone?:
2739
+ string;
2083
2740
  /**
2084
2741
  * Lower bound for an event's last modification time (as a RFC3339 timestamp) to filter by. When specified, entries deleted since this time will always be included regardless of
2085
2742
  * showDeleted. Optional. The default is not to filter by last modification time.
2086
2743
  */
2087
- updatedMin?: string;
2744
+ updatedMin?:
2745
+ string;
2088
2746
  /** Deprecated. Please use quotaUser instead. */
2089
- userIp?: string;
2747
+ userIp?:
2748
+ string;
2090
2749
  }): Request<Events>;
2091
2750
  /** Moves an event to another calendar, i.e. changes an event's organizer. */
2092
2751
  move(request?: {
2093
2752
  /** Data format for the response. */
2094
- alt?: string;
2753
+ alt?:
2754
+ string;
2095
2755
  /** Calendar identifier of the source calendar where the event currently is on. */
2096
- calendarId: string;
2756
+ calendarId:
2757
+ string;
2097
2758
  /** Calendar identifier of the target calendar where the event is to be moved to. */
2098
- destination: string;
2759
+ destination:
2760
+ string;
2099
2761
  /** Event identifier. */
2100
- eventId: string;
2762
+ eventId:
2763
+ string;
2101
2764
  /** Selector specifying which fields to include in a partial response. */
2102
- fields?: string;
2765
+ fields?:
2766
+ string;
2103
2767
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2104
- key?: string;
2768
+ key?:
2769
+ string;
2105
2770
  /** OAuth 2.0 token for the current user. */
2106
- oauth_token?: string;
2771
+ oauth_token?:
2772
+ string;
2107
2773
  /** Returns response with indentations and line breaks. */
2108
- prettyPrint?: boolean;
2774
+ prettyPrint?:
2775
+ boolean;
2109
2776
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2110
- quotaUser?: string;
2777
+ quotaUser?:
2778
+ string;
2111
2779
  /**
2112
2780
  * Deprecated. Please use sendUpdates instead.
2113
2781
  *
2114
2782
  * Whether to send notifications about the change of the event's organizer. Note that some emails might still be sent even if you set the value to false. The default is false.
2115
2783
  */
2116
- sendNotifications?: boolean;
2784
+ sendNotifications?:
2785
+ boolean;
2117
2786
  /** Guests who should receive notifications about the change of the event's organizer. */
2118
- sendUpdates?: string;
2787
+ sendUpdates?:
2788
+ string;
2119
2789
  /** Deprecated. Please use quotaUser instead. */
2120
- userIp?: string;
2790
+ userIp?:
2791
+ string;
2121
2792
  }): Request<Event>;
2122
2793
  /** Updates an event. This method supports patch semantics. */
2123
2794
  patch(request: {
2124
2795
  /** Data format for the response. */
2125
- alt?: string;
2796
+ alt?:
2797
+ string;
2126
2798
  /**
2127
2799
  * Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a
2128
2800
  * generated, non-working value will be provided).
2129
2801
  */
2130
- alwaysIncludeEmail?: boolean;
2802
+ alwaysIncludeEmail?:
2803
+ boolean;
2131
2804
  /**
2132
2805
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
2133
2806
  * keyword.
2134
2807
  */
2135
- calendarId: string;
2808
+ calendarId:
2809
+ string;
2136
2810
  /**
2137
2811
  * Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables
2138
2812
  * support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0.
2139
2813
  */
2140
- conferenceDataVersion?: number;
2814
+ conferenceDataVersion?:
2815
+ number;
2141
2816
  /** Event identifier. */
2142
- eventId: string;
2817
+ eventId:
2818
+ string;
2143
2819
  /** Selector specifying which fields to include in a partial response. */
2144
- fields?: string;
2820
+ fields?:
2821
+ string;
2145
2822
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2146
- key?: string;
2823
+ key?:
2824
+ string;
2147
2825
  /** The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. */
2148
- maxAttendees?: number;
2826
+ maxAttendees?:
2827
+ number;
2149
2828
  /** OAuth 2.0 token for the current user. */
2150
- oauth_token?: string;
2829
+ oauth_token?:
2830
+ string;
2151
2831
  /** Returns response with indentations and line breaks. */
2152
- prettyPrint?: boolean;
2832
+ prettyPrint?:
2833
+ boolean;
2153
2834
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2154
- quotaUser?: string;
2835
+ quotaUser?:
2836
+ string;
2155
2837
  /**
2156
2838
  * Deprecated. Please use sendUpdates instead.
2157
2839
  *
2158
2840
  * Whether to send notifications about the event update (for example, description changes, etc.). Note that some emails might still be sent even if you set the value to false. The
2159
2841
  * default is false.
2160
2842
  */
2161
- sendNotifications?: boolean;
2843
+ sendNotifications?:
2844
+ boolean;
2162
2845
  /** Guests who should receive notifications about the event update (for example, title changes, etc.). */
2163
- sendUpdates?: string;
2846
+ sendUpdates?:
2847
+ string;
2164
2848
  /** Whether API client performing operation supports event attachments. Optional. The default is False. */
2165
- supportsAttachments?: boolean;
2849
+ supportsAttachments?:
2850
+ boolean;
2166
2851
  /** Deprecated. Please use quotaUser instead. */
2167
- userIp?: string;
2852
+ userIp?:
2853
+ string;
2168
2854
  /** Request body */
2169
- resource: Event;
2855
+ resource:
2856
+ Event;
2170
2857
  }): Request<Event>;
2171
2858
  patch(request: {
2172
2859
  /** Data format for the response. */
2173
- alt?: string;
2860
+ alt?:
2861
+ string;
2174
2862
  /**
2175
2863
  * Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a
2176
2864
  * generated, non-working value will be provided).
2177
2865
  */
2178
- alwaysIncludeEmail?: boolean;
2866
+ alwaysIncludeEmail?:
2867
+ boolean;
2179
2868
  /**
2180
2869
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
2181
2870
  * keyword.
2182
2871
  */
2183
- calendarId: string;
2872
+ calendarId:
2873
+ string;
2184
2874
  /**
2185
2875
  * Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables
2186
2876
  * support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0.
2187
2877
  */
2188
- conferenceDataVersion?: number;
2878
+ conferenceDataVersion?:
2879
+ number;
2189
2880
  /** Event identifier. */
2190
- eventId: string;
2881
+ eventId:
2882
+ string;
2191
2883
  /** Selector specifying which fields to include in a partial response. */
2192
- fields?: string;
2884
+ fields?:
2885
+ string;
2193
2886
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2194
- key?: string;
2887
+ key?:
2888
+ string;
2195
2889
  /** The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. */
2196
- maxAttendees?: number;
2890
+ maxAttendees?:
2891
+ number;
2197
2892
  /** OAuth 2.0 token for the current user. */
2198
- oauth_token?: string;
2893
+ oauth_token?:
2894
+ string;
2199
2895
  /** Returns response with indentations and line breaks. */
2200
- prettyPrint?: boolean;
2896
+ prettyPrint?:
2897
+ boolean;
2201
2898
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2202
- quotaUser?: string;
2899
+ quotaUser?:
2900
+ string;
2203
2901
  /**
2204
2902
  * Deprecated. Please use sendUpdates instead.
2205
2903
  *
2206
2904
  * Whether to send notifications about the event update (for example, description changes, etc.). Note that some emails might still be sent even if you set the value to false. The
2207
2905
  * default is false.
2208
2906
  */
2209
- sendNotifications?: boolean;
2907
+ sendNotifications?:
2908
+ boolean;
2210
2909
  /** Guests who should receive notifications about the event update (for example, title changes, etc.). */
2211
- sendUpdates?: string;
2910
+ sendUpdates?:
2911
+ string;
2212
2912
  /** Whether API client performing operation supports event attachments. Optional. The default is False. */
2213
- supportsAttachments?: boolean;
2913
+ supportsAttachments?:
2914
+ boolean;
2214
2915
  /** Deprecated. Please use quotaUser instead. */
2215
- userIp?: string;
2916
+ userIp?:
2917
+ string;
2216
2918
  },
2217
2919
  body: Event): Request<Event>;
2218
2920
  /** Creates an event based on a simple text string. */
2219
2921
  quickAdd(request?: {
2220
2922
  /** Data format for the response. */
2221
- alt?: string;
2923
+ alt?:
2924
+ string;
2222
2925
  /**
2223
2926
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
2224
2927
  * keyword.
2225
2928
  */
2226
- calendarId: string;
2929
+ calendarId:
2930
+ string;
2227
2931
  /** Selector specifying which fields to include in a partial response. */
2228
- fields?: string;
2932
+ fields?:
2933
+ string;
2229
2934
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2230
- key?: string;
2935
+ key?:
2936
+ string;
2231
2937
  /** OAuth 2.0 token for the current user. */
2232
- oauth_token?: string;
2938
+ oauth_token?:
2939
+ string;
2233
2940
  /** Returns response with indentations and line breaks. */
2234
- prettyPrint?: boolean;
2941
+ prettyPrint?:
2942
+ boolean;
2235
2943
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2236
- quotaUser?: string;
2944
+ quotaUser?:
2945
+ string;
2237
2946
  /**
2238
2947
  * Deprecated. Please use sendUpdates instead.
2239
2948
  *
2240
2949
  * Whether to send notifications about the creation of the event. Note that some emails might still be sent even if you set the value to false. The default is false.
2241
2950
  */
2242
- sendNotifications?: boolean;
2951
+ sendNotifications?:
2952
+ boolean;
2243
2953
  /** Guests who should receive notifications about the creation of the new event. */
2244
- sendUpdates?: string;
2954
+ sendUpdates?:
2955
+ string;
2245
2956
  /** The text describing the event to be created. */
2246
- text: string;
2957
+ text:
2958
+ string;
2247
2959
  /** Deprecated. Please use quotaUser instead. */
2248
- userIp?: string;
2960
+ userIp?:
2961
+ string;
2249
2962
  }): Request<Event>;
2250
2963
  /** Updates an event. */
2251
2964
  update(request: {
2252
2965
  /** Data format for the response. */
2253
- alt?: string;
2966
+ alt?:
2967
+ string;
2254
2968
  /**
2255
2969
  * Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a
2256
2970
  * generated, non-working value will be provided).
2257
2971
  */
2258
- alwaysIncludeEmail?: boolean;
2972
+ alwaysIncludeEmail?:
2973
+ boolean;
2259
2974
  /**
2260
2975
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
2261
2976
  * keyword.
2262
2977
  */
2263
- calendarId: string;
2978
+ calendarId:
2979
+ string;
2264
2980
  /**
2265
2981
  * Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables
2266
2982
  * support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0.
2267
2983
  */
2268
- conferenceDataVersion?: number;
2984
+ conferenceDataVersion?:
2985
+ number;
2269
2986
  /** Event identifier. */
2270
- eventId: string;
2987
+ eventId:
2988
+ string;
2271
2989
  /** Selector specifying which fields to include in a partial response. */
2272
- fields?: string;
2990
+ fields?:
2991
+ string;
2273
2992
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2274
- key?: string;
2993
+ key?:
2994
+ string;
2275
2995
  /** The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. */
2276
- maxAttendees?: number;
2996
+ maxAttendees?:
2997
+ number;
2277
2998
  /** OAuth 2.0 token for the current user. */
2278
- oauth_token?: string;
2999
+ oauth_token?:
3000
+ string;
2279
3001
  /** Returns response with indentations and line breaks. */
2280
- prettyPrint?: boolean;
3002
+ prettyPrint?:
3003
+ boolean;
2281
3004
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2282
- quotaUser?: string;
3005
+ quotaUser?:
3006
+ string;
2283
3007
  /**
2284
3008
  * Deprecated. Please use sendUpdates instead.
2285
3009
  *
2286
3010
  * Whether to send notifications about the event update (for example, description changes, etc.). Note that some emails might still be sent even if you set the value to false. The
2287
3011
  * default is false.
2288
3012
  */
2289
- sendNotifications?: boolean;
3013
+ sendNotifications?:
3014
+ boolean;
2290
3015
  /** Guests who should receive notifications about the event update (for example, title changes, etc.). */
2291
- sendUpdates?: string;
3016
+ sendUpdates?:
3017
+ string;
2292
3018
  /** Whether API client performing operation supports event attachments. Optional. The default is False. */
2293
- supportsAttachments?: boolean;
3019
+ supportsAttachments?:
3020
+ boolean;
2294
3021
  /** Deprecated. Please use quotaUser instead. */
2295
- userIp?: string;
3022
+ userIp?:
3023
+ string;
2296
3024
  /** Request body */
2297
- resource: Event;
3025
+ resource:
3026
+ Event;
2298
3027
  }): Request<Event>;
2299
3028
  update(request: {
2300
3029
  /** Data format for the response. */
2301
- alt?: string;
3030
+ alt?:
3031
+ string;
2302
3032
  /**
2303
3033
  * Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a
2304
3034
  * generated, non-working value will be provided).
2305
3035
  */
2306
- alwaysIncludeEmail?: boolean;
3036
+ alwaysIncludeEmail?:
3037
+ boolean;
2307
3038
  /**
2308
3039
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
2309
3040
  * keyword.
2310
3041
  */
2311
- calendarId: string;
3042
+ calendarId:
3043
+ string;
2312
3044
  /**
2313
3045
  * Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables
2314
3046
  * support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0.
2315
3047
  */
2316
- conferenceDataVersion?: number;
3048
+ conferenceDataVersion?:
3049
+ number;
2317
3050
  /** Event identifier. */
2318
- eventId: string;
3051
+ eventId:
3052
+ string;
2319
3053
  /** Selector specifying which fields to include in a partial response. */
2320
- fields?: string;
3054
+ fields?:
3055
+ string;
2321
3056
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2322
- key?: string;
3057
+ key?:
3058
+ string;
2323
3059
  /** The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. */
2324
- maxAttendees?: number;
3060
+ maxAttendees?:
3061
+ number;
2325
3062
  /** OAuth 2.0 token for the current user. */
2326
- oauth_token?: string;
3063
+ oauth_token?:
3064
+ string;
2327
3065
  /** Returns response with indentations and line breaks. */
2328
- prettyPrint?: boolean;
3066
+ prettyPrint?:
3067
+ boolean;
2329
3068
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2330
- quotaUser?: string;
3069
+ quotaUser?:
3070
+ string;
2331
3071
  /**
2332
3072
  * Deprecated. Please use sendUpdates instead.
2333
3073
  *
2334
3074
  * Whether to send notifications about the event update (for example, description changes, etc.). Note that some emails might still be sent even if you set the value to false. The
2335
3075
  * default is false.
2336
3076
  */
2337
- sendNotifications?: boolean;
3077
+ sendNotifications?:
3078
+ boolean;
2338
3079
  /** Guests who should receive notifications about the event update (for example, title changes, etc.). */
2339
- sendUpdates?: string;
3080
+ sendUpdates?:
3081
+ string;
2340
3082
  /** Whether API client performing operation supports event attachments. Optional. The default is False. */
2341
- supportsAttachments?: boolean;
3083
+ supportsAttachments?:
3084
+ boolean;
2342
3085
  /** Deprecated. Please use quotaUser instead. */
2343
- userIp?: string;
3086
+ userIp?:
3087
+ string;
2344
3088
  },
2345
3089
  body: Event): Request<Event>;
2346
3090
  /** Watch for changes to Events resources. */
2347
3091
  watch(request: {
2348
3092
  /** Data format for the response. */
2349
- alt?: string;
3093
+ alt?:
3094
+ string;
2350
3095
  /**
2351
3096
  * Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a
2352
3097
  * generated, non-working value will be provided).
2353
3098
  */
2354
- alwaysIncludeEmail?: boolean;
3099
+ alwaysIncludeEmail?:
3100
+ boolean;
2355
3101
  /**
2356
3102
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
2357
3103
  * keyword.
2358
3104
  */
2359
- calendarId: string;
3105
+ calendarId:
3106
+ string;
2360
3107
  /**
2361
3108
  * Event types to return. Optional. Possible values are:
2362
3109
  * - "default"
@@ -2368,56 +3115,73 @@ declare namespace gapi.client {
2368
3115
  * - ["default", "focusTime", "outOfOffice", "workingLocation"]
2369
3116
  * - ["workingLocation"] Additional combinations of these 4 event types will be made available in later releases. Developer Preview.
2370
3117
  */
2371
- eventTypes?: string | string[];
3118
+ eventTypes?:
3119
+ string | string[];
2372
3120
  /** Selector specifying which fields to include in a partial response. */
2373
- fields?: string;
3121
+ fields?:
3122
+ string;
2374
3123
  /** Specifies an event ID in the iCalendar format to be provided in the response. Optional. Use this if you want to search for an event by its iCalendar ID. */
2375
- iCalUID?: string;
3124
+ iCalUID?:
3125
+ string;
2376
3126
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2377
- key?: string;
3127
+ key?:
3128
+ string;
2378
3129
  /** The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. */
2379
- maxAttendees?: number;
3130
+ maxAttendees?:
3131
+ number;
2380
3132
  /**
2381
3133
  * Maximum number of events returned on one result page. The number of events in the resulting page may be less than this value, or none at all, even if there are more events
2382
3134
  * matching the query. Incomplete pages can be detected by a non-empty nextPageToken field in the response. By default the value is 250 events. The page size can never be larger
2383
3135
  * than 2500 events. Optional.
2384
3136
  */
2385
- maxResults?: number;
3137
+ maxResults?:
3138
+ number;
2386
3139
  /** OAuth 2.0 token for the current user. */
2387
- oauth_token?: string;
3140
+ oauth_token?:
3141
+ string;
2388
3142
  /** The order of the events returned in the result. Optional. The default is an unspecified, stable order. */
2389
- orderBy?: string;
3143
+ orderBy?:
3144
+ string;
2390
3145
  /** Token specifying which result page to return. Optional. */
2391
- pageToken?: string;
3146
+ pageToken?:
3147
+ string;
2392
3148
  /** Returns response with indentations and line breaks. */
2393
- prettyPrint?: boolean;
3149
+ prettyPrint?:
3150
+ boolean;
2394
3151
  /**
2395
3152
  * Extended properties constraint specified as propertyName=value. Matches only private properties. This parameter might be repeated multiple times to return events that match all
2396
3153
  * given constraints.
2397
3154
  */
2398
- privateExtendedProperty?: string | string[];
3155
+ privateExtendedProperty?:
3156
+ string | string[];
2399
3157
  /** Free text search terms to find events that match these terms in the following fields: summary, description, location, attendee's displayName, attendee's email. Optional. */
2400
- q?: string;
3158
+ q?:
3159
+ string;
2401
3160
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2402
- quotaUser?: string;
3161
+ quotaUser?:
3162
+ string;
2403
3163
  /**
2404
3164
  * Extended properties constraint specified as propertyName=value. Matches only shared properties. This parameter might be repeated multiple times to return events that match all
2405
3165
  * given constraints.
2406
3166
  */
2407
- sharedExtendedProperty?: string | string[];
3167
+ sharedExtendedProperty?:
3168
+ string | string[];
2408
3169
  /**
2409
3170
  * Whether to include deleted events (with status equals "cancelled") in the result. Cancelled instances of recurring events (but not the underlying recurring event) will still be
2410
3171
  * included if showDeleted and singleEvents are both False. If showDeleted and singleEvents are both True, only single instances of deleted events (but not the underlying recurring
2411
3172
  * events) are returned. Optional. The default is False.
2412
3173
  */
2413
- showDeleted?: boolean;
3174
+ showDeleted?:
3175
+ boolean;
2414
3176
  /** Whether to include hidden invitations in the result. Optional. The default is False. */
2415
- showHiddenInvitations?: boolean;
3177
+ showHiddenInvitations?:
3178
+ boolean;
2416
3179
  /**
2417
3180
  * Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves.
2418
3181
  * Optional. The default is False.
2419
3182
  */
2420
- singleEvents?: boolean;
3183
+ singleEvents?:
3184
+ boolean;
2421
3185
  /**
2422
3186
  * Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries
2423
3187
  * that have changed since then. All events deleted since the previous list request will always be in the result set and it is not allowed to set showDeleted to False.
@@ -2436,42 +3200,52 @@ declare namespace gapi.client {
2436
3200
  * Learn more about incremental synchronization.
2437
3201
  * Optional. The default is to return all entries.
2438
3202
  */
2439
- syncToken?: string;
3203
+ syncToken?:
3204
+ string;
2440
3205
  /**
2441
3206
  * Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone
2442
3207
  * offset, for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but are ignored. If timeMin is set, timeMax must be greater than timeMin.
2443
3208
  */
2444
- timeMax?: string;
3209
+ timeMax?:
3210
+ string;
2445
3211
  /**
2446
3212
  * Lower bound (exclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset,
2447
3213
  * for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but are ignored. If timeMax is set, timeMin must be smaller than timeMax.
2448
3214
  */
2449
- timeMin?: string;
3215
+ timeMin?:
3216
+ string;
2450
3217
  /** Time zone used in the response. Optional. The default is the time zone of the calendar. */
2451
- timeZone?: string;
3218
+ timeZone?:
3219
+ string;
2452
3220
  /**
2453
3221
  * Lower bound for an event's last modification time (as a RFC3339 timestamp) to filter by. When specified, entries deleted since this time will always be included regardless of
2454
3222
  * showDeleted. Optional. The default is not to filter by last modification time.
2455
3223
  */
2456
- updatedMin?: string;
3224
+ updatedMin?:
3225
+ string;
2457
3226
  /** Deprecated. Please use quotaUser instead. */
2458
- userIp?: string;
3227
+ userIp?:
3228
+ string;
2459
3229
  /** Request body */
2460
- resource: Channel;
3230
+ resource:
3231
+ Channel;
2461
3232
  }): Request<Channel>;
2462
3233
  watch(request: {
2463
3234
  /** Data format for the response. */
2464
- alt?: string;
3235
+ alt?:
3236
+ string;
2465
3237
  /**
2466
3238
  * Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a
2467
3239
  * generated, non-working value will be provided).
2468
3240
  */
2469
- alwaysIncludeEmail?: boolean;
3241
+ alwaysIncludeEmail?:
3242
+ boolean;
2470
3243
  /**
2471
3244
  * Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary"
2472
3245
  * keyword.
2473
3246
  */
2474
- calendarId: string;
3247
+ calendarId:
3248
+ string;
2475
3249
  /**
2476
3250
  * Event types to return. Optional. Possible values are:
2477
3251
  * - "default"
@@ -2483,56 +3257,73 @@ declare namespace gapi.client {
2483
3257
  * - ["default", "focusTime", "outOfOffice", "workingLocation"]
2484
3258
  * - ["workingLocation"] Additional combinations of these 4 event types will be made available in later releases. Developer Preview.
2485
3259
  */
2486
- eventTypes?: string | string[];
3260
+ eventTypes?:
3261
+ string | string[];
2487
3262
  /** Selector specifying which fields to include in a partial response. */
2488
- fields?: string;
3263
+ fields?:
3264
+ string;
2489
3265
  /** Specifies an event ID in the iCalendar format to be provided in the response. Optional. Use this if you want to search for an event by its iCalendar ID. */
2490
- iCalUID?: string;
3266
+ iCalUID?:
3267
+ string;
2491
3268
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2492
- key?: string;
3269
+ key?:
3270
+ string;
2493
3271
  /** The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. */
2494
- maxAttendees?: number;
3272
+ maxAttendees?:
3273
+ number;
2495
3274
  /**
2496
3275
  * Maximum number of events returned on one result page. The number of events in the resulting page may be less than this value, or none at all, even if there are more events
2497
3276
  * matching the query. Incomplete pages can be detected by a non-empty nextPageToken field in the response. By default the value is 250 events. The page size can never be larger
2498
3277
  * than 2500 events. Optional.
2499
3278
  */
2500
- maxResults?: number;
3279
+ maxResults?:
3280
+ number;
2501
3281
  /** OAuth 2.0 token for the current user. */
2502
- oauth_token?: string;
3282
+ oauth_token?:
3283
+ string;
2503
3284
  /** The order of the events returned in the result. Optional. The default is an unspecified, stable order. */
2504
- orderBy?: string;
3285
+ orderBy?:
3286
+ string;
2505
3287
  /** Token specifying which result page to return. Optional. */
2506
- pageToken?: string;
3288
+ pageToken?:
3289
+ string;
2507
3290
  /** Returns response with indentations and line breaks. */
2508
- prettyPrint?: boolean;
3291
+ prettyPrint?:
3292
+ boolean;
2509
3293
  /**
2510
3294
  * Extended properties constraint specified as propertyName=value. Matches only private properties. This parameter might be repeated multiple times to return events that match all
2511
3295
  * given constraints.
2512
3296
  */
2513
- privateExtendedProperty?: string | string[];
3297
+ privateExtendedProperty?:
3298
+ string | string[];
2514
3299
  /** Free text search terms to find events that match these terms in the following fields: summary, description, location, attendee's displayName, attendee's email. Optional. */
2515
- q?: string;
3300
+ q?:
3301
+ string;
2516
3302
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2517
- quotaUser?: string;
3303
+ quotaUser?:
3304
+ string;
2518
3305
  /**
2519
3306
  * Extended properties constraint specified as propertyName=value. Matches only shared properties. This parameter might be repeated multiple times to return events that match all
2520
3307
  * given constraints.
2521
3308
  */
2522
- sharedExtendedProperty?: string | string[];
3309
+ sharedExtendedProperty?:
3310
+ string | string[];
2523
3311
  /**
2524
3312
  * Whether to include deleted events (with status equals "cancelled") in the result. Cancelled instances of recurring events (but not the underlying recurring event) will still be
2525
3313
  * included if showDeleted and singleEvents are both False. If showDeleted and singleEvents are both True, only single instances of deleted events (but not the underlying recurring
2526
3314
  * events) are returned. Optional. The default is False.
2527
3315
  */
2528
- showDeleted?: boolean;
3316
+ showDeleted?:
3317
+ boolean;
2529
3318
  /** Whether to include hidden invitations in the result. Optional. The default is False. */
2530
- showHiddenInvitations?: boolean;
3319
+ showHiddenInvitations?:
3320
+ boolean;
2531
3321
  /**
2532
3322
  * Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves.
2533
3323
  * Optional. The default is False.
2534
3324
  */
2535
- singleEvents?: boolean;
3325
+ singleEvents?:
3326
+ boolean;
2536
3327
  /**
2537
3328
  * Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries
2538
3329
  * that have changed since then. All events deleted since the previous list request will always be in the result set and it is not allowed to set showDeleted to False.
@@ -2551,26 +3342,32 @@ declare namespace gapi.client {
2551
3342
  * Learn more about incremental synchronization.
2552
3343
  * Optional. The default is to return all entries.
2553
3344
  */
2554
- syncToken?: string;
3345
+ syncToken?:
3346
+ string;
2555
3347
  /**
2556
3348
  * Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone
2557
3349
  * offset, for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but are ignored. If timeMin is set, timeMax must be greater than timeMin.
2558
3350
  */
2559
- timeMax?: string;
3351
+ timeMax?:
3352
+ string;
2560
3353
  /**
2561
3354
  * Lower bound (exclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset,
2562
3355
  * for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but are ignored. If timeMax is set, timeMin must be smaller than timeMax.
2563
3356
  */
2564
- timeMin?: string;
3357
+ timeMin?:
3358
+ string;
2565
3359
  /** Time zone used in the response. Optional. The default is the time zone of the calendar. */
2566
- timeZone?: string;
3360
+ timeZone?:
3361
+ string;
2567
3362
  /**
2568
3363
  * Lower bound for an event's last modification time (as a RFC3339 timestamp) to filter by. When specified, entries deleted since this time will always be included regardless of
2569
3364
  * showDeleted. Optional. The default is not to filter by last modification time.
2570
3365
  */
2571
- updatedMin?: string;
3366
+ updatedMin?:
3367
+ string;
2572
3368
  /** Deprecated. Please use quotaUser instead. */
2573
- userIp?: string;
3369
+ userIp?:
3370
+ string;
2574
3371
  },
2575
3372
  body: Channel): Request<Channel>;
2576
3373
  }
@@ -2578,37 +3375,52 @@ declare namespace gapi.client {
2578
3375
  /** Returns free/busy information for a set of calendars. */
2579
3376
  query(request: {
2580
3377
  /** Data format for the response. */
2581
- alt?: string;
3378
+ alt?:
3379
+ string;
2582
3380
  /** Selector specifying which fields to include in a partial response. */
2583
- fields?: string;
3381
+ fields?:
3382
+ string;
2584
3383
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2585
- key?: string;
3384
+ key?:
3385
+ string;
2586
3386
  /** OAuth 2.0 token for the current user. */
2587
- oauth_token?: string;
3387
+ oauth_token?:
3388
+ string;
2588
3389
  /** Returns response with indentations and line breaks. */
2589
- prettyPrint?: boolean;
3390
+ prettyPrint?:
3391
+ boolean;
2590
3392
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2591
- quotaUser?: string;
3393
+ quotaUser?:
3394
+ string;
2592
3395
  /** Deprecated. Please use quotaUser instead. */
2593
- userIp?: string;
3396
+ userIp?:
3397
+ string;
2594
3398
  /** Request body */
2595
- resource: FreeBusyRequest;
3399
+ resource:
3400
+ FreeBusyRequest;
2596
3401
  }): Request<FreeBusyResponse>;
2597
3402
  query(request: {
2598
3403
  /** Data format for the response. */
2599
- alt?: string;
3404
+ alt?:
3405
+ string;
2600
3406
  /** Selector specifying which fields to include in a partial response. */
2601
- fields?: string;
3407
+ fields?:
3408
+ string;
2602
3409
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2603
- key?: string;
3410
+ key?:
3411
+ string;
2604
3412
  /** OAuth 2.0 token for the current user. */
2605
- oauth_token?: string;
3413
+ oauth_token?:
3414
+ string;
2606
3415
  /** Returns response with indentations and line breaks. */
2607
- prettyPrint?: boolean;
3416
+ prettyPrint?:
3417
+ boolean;
2608
3418
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2609
- quotaUser?: string;
3419
+ quotaUser?:
3420
+ string;
2610
3421
  /** Deprecated. Please use quotaUser instead. */
2611
- userIp?: string;
3422
+ userIp?:
3423
+ string;
2612
3424
  },
2613
3425
  body: FreeBusyRequest): Request<FreeBusyResponse>;
2614
3426
  }
@@ -2616,40 +3428,56 @@ declare namespace gapi.client {
2616
3428
  /** Returns a single user setting. */
2617
3429
  get(request?: {
2618
3430
  /** Data format for the response. */
2619
- alt?: string;
3431
+ alt?:
3432
+ string;
2620
3433
  /** Selector specifying which fields to include in a partial response. */
2621
- fields?: string;
3434
+ fields?:
3435
+ string;
2622
3436
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2623
- key?: string;
3437
+ key?:
3438
+ string;
2624
3439
  /** OAuth 2.0 token for the current user. */
2625
- oauth_token?: string;
3440
+ oauth_token?:
3441
+ string;
2626
3442
  /** Returns response with indentations and line breaks. */
2627
- prettyPrint?: boolean;
3443
+ prettyPrint?:
3444
+ boolean;
2628
3445
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2629
- quotaUser?: string;
3446
+ quotaUser?:
3447
+ string;
2630
3448
  /** The id of the user setting. */
2631
- setting: string;
3449
+ setting:
3450
+ string;
2632
3451
  /** Deprecated. Please use quotaUser instead. */
2633
- userIp?: string;
3452
+ userIp?:
3453
+ string;
2634
3454
  }): Request<Setting>;
2635
3455
  /** Returns all user settings for the authenticated user. */
2636
3456
  list(request?: {
2637
3457
  /** Data format for the response. */
2638
- alt?: string;
3458
+ alt?:
3459
+ string;
2639
3460
  /** Selector specifying which fields to include in a partial response. */
2640
- fields?: string;
3461
+ fields?:
3462
+ string;
2641
3463
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2642
- key?: string;
3464
+ key?:
3465
+ string;
2643
3466
  /** Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional. */
2644
- maxResults?: number;
3467
+ maxResults?:
3468
+ number;
2645
3469
  /** OAuth 2.0 token for the current user. */
2646
- oauth_token?: string;
3470
+ oauth_token?:
3471
+ string;
2647
3472
  /** Token specifying which result page to return. Optional. */
2648
- pageToken?: string;
3473
+ pageToken?:
3474
+ string;
2649
3475
  /** Returns response with indentations and line breaks. */
2650
- prettyPrint?: boolean;
3476
+ prettyPrint?:
3477
+ boolean;
2651
3478
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2652
- quotaUser?: string;
3479
+ quotaUser?:
3480
+ string;
2653
3481
  /**
2654
3482
  * Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries
2655
3483
  * that have changed since then.
@@ -2657,28 +3485,38 @@ declare namespace gapi.client {
2657
3485
  * Learn more about incremental synchronization.
2658
3486
  * Optional. The default is to return all entries.
2659
3487
  */
2660
- syncToken?: string;
3488
+ syncToken?:
3489
+ string;
2661
3490
  /** Deprecated. Please use quotaUser instead. */
2662
- userIp?: string;
3491
+ userIp?:
3492
+ string;
2663
3493
  }): Request<Settings>;
2664
3494
  /** Watch for changes to Settings resources. */
2665
3495
  watch(request: {
2666
3496
  /** Data format for the response. */
2667
- alt?: string;
3497
+ alt?:
3498
+ string;
2668
3499
  /** Selector specifying which fields to include in a partial response. */
2669
- fields?: string;
3500
+ fields?:
3501
+ string;
2670
3502
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2671
- key?: string;
3503
+ key?:
3504
+ string;
2672
3505
  /** Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional. */
2673
- maxResults?: number;
3506
+ maxResults?:
3507
+ number;
2674
3508
  /** OAuth 2.0 token for the current user. */
2675
- oauth_token?: string;
3509
+ oauth_token?:
3510
+ string;
2676
3511
  /** Token specifying which result page to return. Optional. */
2677
- pageToken?: string;
3512
+ pageToken?:
3513
+ string;
2678
3514
  /** Returns response with indentations and line breaks. */
2679
- prettyPrint?: boolean;
3515
+ prettyPrint?:
3516
+ boolean;
2680
3517
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2681
- quotaUser?: string;
3518
+ quotaUser?:
3519
+ string;
2682
3520
  /**
2683
3521
  * Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries
2684
3522
  * that have changed since then.
@@ -2686,29 +3524,40 @@ declare namespace gapi.client {
2686
3524
  * Learn more about incremental synchronization.
2687
3525
  * Optional. The default is to return all entries.
2688
3526
  */
2689
- syncToken?: string;
3527
+ syncToken?:
3528
+ string;
2690
3529
  /** Deprecated. Please use quotaUser instead. */
2691
- userIp?: string;
3530
+ userIp?:
3531
+ string;
2692
3532
  /** Request body */
2693
- resource: Channel;
3533
+ resource:
3534
+ Channel;
2694
3535
  }): Request<Channel>;
2695
3536
  watch(request: {
2696
3537
  /** Data format for the response. */
2697
- alt?: string;
3538
+ alt?:
3539
+ string;
2698
3540
  /** Selector specifying which fields to include in a partial response. */
2699
- fields?: string;
3541
+ fields?:
3542
+ string;
2700
3543
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2701
- key?: string;
3544
+ key?:
3545
+ string;
2702
3546
  /** Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional. */
2703
- maxResults?: number;
3547
+ maxResults?:
3548
+ number;
2704
3549
  /** OAuth 2.0 token for the current user. */
2705
- oauth_token?: string;
3550
+ oauth_token?:
3551
+ string;
2706
3552
  /** Token specifying which result page to return. Optional. */
2707
- pageToken?: string;
3553
+ pageToken?:
3554
+ string;
2708
3555
  /** Returns response with indentations and line breaks. */
2709
- prettyPrint?: boolean;
3556
+ prettyPrint?:
3557
+ boolean;
2710
3558
  /** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
2711
- quotaUser?: string;
3559
+ quotaUser?:
3560
+ string;
2712
3561
  /**
2713
3562
  * Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries
2714
3563
  * that have changed since then.
@@ -2716,9 +3565,11 @@ declare namespace gapi.client {
2716
3565
  * Learn more about incremental synchronization.
2717
3566
  * Optional. The default is to return all entries.
2718
3567
  */
2719
- syncToken?: string;
3568
+ syncToken?:
3569
+ string;
2720
3570
  /** Deprecated. Please use quotaUser instead. */
2721
- userIp?: string;
3571
+ userIp?:
3572
+ string;
2722
3573
  },
2723
3574
  body: Channel): Request<Channel>;
2724
3575
  }