Google_CalendarService.php
72.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
<?php
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
/**
* The "freebusy" collection of methods.
* Typical usage is:
* <code>
* $calendarService = new Google_CalendarService(...);
* $freebusy = $calendarService->freebusy;
* </code>
*/
class Google_FreebusyServiceResource extends Google_ServiceResource {
/**
* Returns free/busy information for a set of calendars. (freebusy.query)
*
* @param Google_FreeBusyRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_FreeBusyResponse
*/
public function query(Google_FreeBusyRequest $postBody, $optParams = array()) {
$params = array('postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('query', array($params));
if ($this->useObjects()) {
return new Google_FreeBusyResponse($data);
} else {
return $data;
}
}
}
/**
* The "settings" collection of methods.
* Typical usage is:
* <code>
* $calendarService = new Google_CalendarService(...);
* $settings = $calendarService->settings;
* </code>
*/
class Google_SettingsServiceResource extends Google_ServiceResource {
/**
* Returns all user settings for the authenticated user. (settings.list)
*
* @param array $optParams Optional parameters.
* @return Google_Settings
*/
public function listSettings($optParams = array()) {
$params = array();
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_Settings($data);
} else {
return $data;
}
}
/**
* Returns a single user setting. (settings.get)
*
* @param string $setting Name of the user setting.
* @param array $optParams Optional parameters.
* @return Google_Setting
*/
public function get($setting, $optParams = array()) {
$params = array('setting' => $setting);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Setting($data);
} else {
return $data;
}
}
}
/**
* The "calendarList" collection of methods.
* Typical usage is:
* <code>
* $calendarService = new Google_CalendarService(...);
* $calendarList = $calendarService->calendarList;
* </code>
*/
class Google_CalendarListServiceResource extends Google_ServiceResource {
/**
* Adds an entry to the user's calendar list. (calendarList.insert)
*
* @param Google_CalendarListEntry $postBody
* @param array $optParams Optional parameters.
*
* @opt_param bool colorRgbFormat Whether to use the 'frontendColor' and 'backgroundColor' fields to write the calendar colors (RGB). If this feature is used, the index-based 'color' field will be set to the best matching option automatically. Optional. The default is False.
* @return Google_CalendarListEntry
*/
public function insert(Google_CalendarListEntry $postBody, $optParams = array()) {
$params = array('postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_CalendarListEntry($data);
} else {
return $data;
}
}
/**
* Returns an entry on the user's calendar list. (calendarList.get)
*
* @param string $calendarId Calendar identifier.
* @param array $optParams Optional parameters.
* @return Google_CalendarListEntry
*/
public function get($calendarId, $optParams = array()) {
$params = array('calendarId' => $calendarId);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_CalendarListEntry($data);
} else {
return $data;
}
}
/**
* Returns entries on the user's calendar list. (calendarList.list)
*
* @param array $optParams Optional parameters.
*
* @opt_param string pageToken Token specifying which result page to return. Optional.
* @opt_param bool showHidden Whether to show hidden entries. Optional. The default is False.
* @opt_param int maxResults Maximum number of entries returned on one result page. Optional.
* @opt_param string minAccessRole The minimum access role for the user in the returned entires. Optional. The default is no restriction.
* @return Google_CalendarList
*/
public function listCalendarList($optParams = array()) {
$params = array();
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_CalendarList($data);
} else {
return $data;
}
}
/**
* Updates an entry on the user's calendar list. (calendarList.update)
*
* @param string $calendarId Calendar identifier.
* @param Google_CalendarListEntry $postBody
* @param array $optParams Optional parameters.
*
* @opt_param bool colorRgbFormat Whether to use the 'frontendColor' and 'backgroundColor' fields to write the calendar colors (RGB). If this feature is used, the index-based 'color' field will be set to the best matching option automatically. Optional. The default is False.
* @return Google_CalendarListEntry
*/
public function update($calendarId, Google_CalendarListEntry $postBody, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('update', array($params));
if ($this->useObjects()) {
return new Google_CalendarListEntry($data);
} else {
return $data;
}
}
/**
* Updates an entry on the user's calendar list. This method supports patch semantics.
* (calendarList.patch)
*
* @param string $calendarId Calendar identifier.
* @param Google_CalendarListEntry $postBody
* @param array $optParams Optional parameters.
*
* @opt_param bool colorRgbFormat Whether to use the 'frontendColor' and 'backgroundColor' fields to write the calendar colors (RGB). If this feature is used, the index-based 'color' field will be set to the best matching option automatically. Optional. The default is False.
* @return Google_CalendarListEntry
*/
public function patch($calendarId, Google_CalendarListEntry $postBody, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('patch', array($params));
if ($this->useObjects()) {
return new Google_CalendarListEntry($data);
} else {
return $data;
}
}
/**
* Deletes an entry on the user's calendar list. (calendarList.delete)
*
* @param string $calendarId Calendar identifier.
* @param array $optParams Optional parameters.
*/
public function delete($calendarId, $optParams = array()) {
$params = array('calendarId' => $calendarId);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
return $data;
}
}
/**
* The "calendars" collection of methods.
* Typical usage is:
* <code>
* $calendarService = new Google_CalendarService(...);
* $calendars = $calendarService->calendars;
* </code>
*/
class Google_CalendarsServiceResource extends Google_ServiceResource {
/**
* Creates a secondary calendar. (calendars.insert)
*
* @param Google_Calendar $postBody
* @param array $optParams Optional parameters.
* @return Google_Calendar
*/
public function insert(Google_Calendar $postBody, $optParams = array()) {
$params = array('postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_Calendar($data);
} else {
return $data;
}
}
/**
* Returns metadata for a calendar. (calendars.get)
*
* @param string $calendarId Calendar identifier.
* @param array $optParams Optional parameters.
* @return Google_Calendar
*/
public function get($calendarId, $optParams = array()) {
$params = array('calendarId' => $calendarId);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Calendar($data);
} else {
return $data;
}
}
/**
* Clears a primary calendar. This operation deletes all data associated with the primary calendar
* of an account and cannot be undone. (calendars.clear)
*
* @param string $calendarId Calendar identifier.
* @param array $optParams Optional parameters.
*/
public function clear($calendarId, $optParams = array()) {
$params = array('calendarId' => $calendarId);
$params = array_merge($params, $optParams);
$data = $this->__call('clear', array($params));
return $data;
}
/**
* Updates metadata for a calendar. (calendars.update)
*
* @param string $calendarId Calendar identifier.
* @param Google_Calendar $postBody
* @param array $optParams Optional parameters.
* @return Google_Calendar
*/
public function update($calendarId, Google_Calendar $postBody, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('update', array($params));
if ($this->useObjects()) {
return new Google_Calendar($data);
} else {
return $data;
}
}
/**
* Updates metadata for a calendar. This method supports patch semantics. (calendars.patch)
*
* @param string $calendarId Calendar identifier.
* @param Google_Calendar $postBody
* @param array $optParams Optional parameters.
* @return Google_Calendar
*/
public function patch($calendarId, Google_Calendar $postBody, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('patch', array($params));
if ($this->useObjects()) {
return new Google_Calendar($data);
} else {
return $data;
}
}
/**
* Deletes a secondary calendar. (calendars.delete)
*
* @param string $calendarId Calendar identifier.
* @param array $optParams Optional parameters.
*/
public function delete($calendarId, $optParams = array()) {
$params = array('calendarId' => $calendarId);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
return $data;
}
}
/**
* The "acl" collection of methods.
* Typical usage is:
* <code>
* $calendarService = new Google_CalendarService(...);
* $acl = $calendarService->acl;
* </code>
*/
class Google_AclServiceResource extends Google_ServiceResource {
/**
* Creates an access control rule. (acl.insert)
*
* @param string $calendarId Calendar identifier.
* @param Google_AclRule $postBody
* @param array $optParams Optional parameters.
* @return Google_AclRule
*/
public function insert($calendarId, Google_AclRule $postBody, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_AclRule($data);
} else {
return $data;
}
}
/**
* Returns an access control rule. (acl.get)
*
* @param string $calendarId Calendar identifier.
* @param string $ruleId ACL rule identifier.
* @param array $optParams Optional parameters.
* @return Google_AclRule
*/
public function get($calendarId, $ruleId, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'ruleId' => $ruleId);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_AclRule($data);
} else {
return $data;
}
}
/**
* Returns the rules in the access control list for the calendar. (acl.list)
*
* @param string $calendarId Calendar identifier.
* @param array $optParams Optional parameters.
* @return Google_Acl
*/
public function listAcl($calendarId, $optParams = array()) {
$params = array('calendarId' => $calendarId);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_Acl($data);
} else {
return $data;
}
}
/**
* Updates an access control rule. (acl.update)
*
* @param string $calendarId Calendar identifier.
* @param string $ruleId ACL rule identifier.
* @param Google_AclRule $postBody
* @param array $optParams Optional parameters.
* @return Google_AclRule
*/
public function update($calendarId, $ruleId, Google_AclRule $postBody, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'ruleId' => $ruleId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('update', array($params));
if ($this->useObjects()) {
return new Google_AclRule($data);
} else {
return $data;
}
}
/**
* Updates an access control rule. This method supports patch semantics. (acl.patch)
*
* @param string $calendarId Calendar identifier.
* @param string $ruleId ACL rule identifier.
* @param Google_AclRule $postBody
* @param array $optParams Optional parameters.
* @return Google_AclRule
*/
public function patch($calendarId, $ruleId, Google_AclRule $postBody, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'ruleId' => $ruleId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('patch', array($params));
if ($this->useObjects()) {
return new Google_AclRule($data);
} else {
return $data;
}
}
/**
* Deletes an access control rule. (acl.delete)
*
* @param string $calendarId Calendar identifier.
* @param string $ruleId ACL rule identifier.
* @param array $optParams Optional parameters.
*/
public function delete($calendarId, $ruleId, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'ruleId' => $ruleId);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
return $data;
}
}
/**
* The "colors" collection of methods.
* Typical usage is:
* <code>
* $calendarService = new Google_CalendarService(...);
* $colors = $calendarService->colors;
* </code>
*/
class Google_ColorsServiceResource extends Google_ServiceResource {
/**
* Returns the color definitions for calendars and events. (colors.get)
*
* @param array $optParams Optional parameters.
* @return Google_Colors
*/
public function get($optParams = array()) {
$params = array();
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Colors($data);
} else {
return $data;
}
}
}
/**
* The "events" collection of methods.
* Typical usage is:
* <code>
* $calendarService = new Google_CalendarService(...);
* $events = $calendarService->events;
* </code>
*/
class Google_EventsServiceResource extends Google_ServiceResource {
/**
* Creates an event. (events.insert)
*
* @param string $calendarId Calendar identifier.
* @param Google_Event $postBody
* @param array $optParams Optional parameters.
*
* @opt_param bool sendNotifications Whether to send notifications about the creation of the new event. Optional. The default is False.
* @return Google_Event
*/
public function insert($calendarId, Google_Event $postBody, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_Event($data);
} else {
return $data;
}
}
/**
* Returns an event. (events.get)
*
* @param string $calendarId Calendar identifier.
* @param string $eventId Event identifier.
* @param array $optParams Optional parameters.
*
* @opt_param string timeZone Time zone used in the response. Optional. The default is the time zone of the calendar.
* @opt_param bool alwaysIncludeEmail Whether to always include a value in the "email" field for the organizer, creator and attendees, even if no real email is available (i.e. a generated, non-working value will be provided). The use of this option is discouraged and should only be used by clients which cannot handle the absence of an email address value in the mentioned places. Optional. The default is False.
* @opt_param int maxAttendees 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.
* @return Google_Event
*/
public function get($calendarId, $eventId, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'eventId' => $eventId);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Event($data);
} else {
return $data;
}
}
/**
* Moves an event to another calendar, i.e. changes an event's organizer. (events.move)
*
* @param string $calendarId Calendar identifier of the source calendar where the event currently is on.
* @param string $eventId Event identifier.
* @param string $destination Calendar identifier of the target calendar where the event is to be moved to.
* @param array $optParams Optional parameters.
*
* @opt_param bool sendNotifications Whether to send notifications about the change of the event's organizer. Optional. The default is False.
* @return Google_Event
*/
public function move($calendarId, $eventId, $destination, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'destination' => $destination);
$params = array_merge($params, $optParams);
$data = $this->__call('move', array($params));
if ($this->useObjects()) {
return new Google_Event($data);
} else {
return $data;
}
}
/**
* Returns events on the specified calendar. (events.list)
*
* @param string $calendarId Calendar identifier.
* @param array $optParams Optional parameters.
*
* @opt_param string orderBy The order of the events returned in the result. Optional. The default is an unspecified, stable order.
* @opt_param bool showHiddenInvitations Whether to include hidden invitations in the result. Optional. The default is False.
* @opt_param bool showDeleted Whether to include deleted events (with 'eventStatus' equals 'cancelled') in the result. Optional. The default is False.
* @opt_param string iCalUID Specifies iCalendar UID (iCalUID) of events to be included in the response. Optional.
* @opt_param string updatedMin Lower bound for an event's last modification time (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by last modification time.
* @opt_param bool singleEvents 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. Optional. The default is False.
* @opt_param bool alwaysIncludeEmail Whether to always include a value in the "email" field for the organizer, creator and attendees, even if no real email is available (i.e. a generated, non-working value will be provided). The use of this option is discouraged and should only be used by clients which cannot handle the absence of an email address value in the mentioned places. Optional. The default is False.
* @opt_param int maxResults Maximum number of events returned on one result page. Optional.
* @opt_param string q Free text search terms to find events that match these terms in any field, except for extended properties. Optional.
* @opt_param string pageToken Token specifying which result page to return. Optional.
* @opt_param string timeMin Lower bound (inclusive) for an event's end time to filter by. Optional. The default is not to filter by end time.
* @opt_param string timeZone Time zone used in the response. Optional. The default is the time zone of the calendar.
* @opt_param string timeMax Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time.
* @opt_param int maxAttendees 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.
* @return Google_Events
*/
public function listEvents($calendarId, $optParams = array()) {
$params = array('calendarId' => $calendarId);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_Events($data);
} else {
return $data;
}
}
/**
* Updates an event. (events.update)
*
* @param string $calendarId Calendar identifier.
* @param string $eventId Event identifier.
* @param Google_Event $postBody
* @param array $optParams Optional parameters.
*
* @opt_param bool alwaysIncludeEmail Whether to always include a value in the "email" field for the organizer, creator and attendees, even if no real email is available (i.e. a generated, non-working value will be provided). The use of this option is discouraged and should only be used by clients which cannot handle the absence of an email address value in the mentioned places. Optional. The default is False.
* @opt_param bool sendNotifications Whether to send notifications about the event update (e.g. attendee's responses, title changes, etc.). Optional. The default is False.
* @return Google_Event
*/
public function update($calendarId, $eventId, Google_Event $postBody, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('update', array($params));
if ($this->useObjects()) {
return new Google_Event($data);
} else {
return $data;
}
}
/**
* Updates an event. This method supports patch semantics. (events.patch)
*
* @param string $calendarId Calendar identifier.
* @param string $eventId Event identifier.
* @param Google_Event $postBody
* @param array $optParams Optional parameters.
*
* @opt_param bool alwaysIncludeEmail Whether to always include a value in the "email" field for the organizer, creator and attendees, even if no real email is available (i.e. a generated, non-working value will be provided). The use of this option is discouraged and should only be used by clients which cannot handle the absence of an email address value in the mentioned places. Optional. The default is False.
* @opt_param bool sendNotifications Whether to send notifications about the event update (e.g. attendee's responses, title changes, etc.). Optional. The default is False.
* @return Google_Event
*/
public function patch($calendarId, $eventId, Google_Event $postBody, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('patch', array($params));
if ($this->useObjects()) {
return new Google_Event($data);
} else {
return $data;
}
}
/**
* Returns instances of the specified recurring event. (events.instances)
*
* @param string $calendarId Calendar identifier.
* @param string $eventId Recurring event identifier.
* @param array $optParams Optional parameters.
*
* @opt_param bool showDeleted Whether to include deleted events (with 'eventStatus' equals 'cancelled') in the result. Optional. The default is False.
* @opt_param bool alwaysIncludeEmail Whether to always include a value in the "email" field for the organizer, creator and attendees, even if no real email is available (i.e. a generated, non-working value will be provided). The use of this option is discouraged and should only be used by clients which cannot handle the absence of an email address value in the mentioned places. Optional. The default is False.
* @opt_param int maxResults Maximum number of events returned on one result page. Optional.
* @opt_param string pageToken Token specifying which result page to return. Optional.
* @opt_param string timeZone Time zone used in the response. Optional. The default is the time zone of the calendar.
* @opt_param string originalStart The original start time of the instance in the result. Optional.
* @opt_param int maxAttendees 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.
* @return Google_Events
*/
public function instances($calendarId, $eventId, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'eventId' => $eventId);
$params = array_merge($params, $optParams);
$data = $this->__call('instances', array($params));
if ($this->useObjects()) {
return new Google_Events($data);
} else {
return $data;
}
}
/**
* Imports an event. (events.import)
*
* @param string $calendarId Calendar identifier.
* @param Google_Event $postBody
* @param array $optParams Optional parameters.
* @return Google_Event
*/
public function import($calendarId, Google_Event $postBody, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('import', array($params));
if ($this->useObjects()) {
return new Google_Event($data);
} else {
return $data;
}
}
/**
* Creates an event based on a simple text string. (events.quickAdd)
*
* @param string $calendarId Calendar identifier.
* @param string $text The text describing the event to be created.
* @param array $optParams Optional parameters.
*
* @opt_param bool sendNotifications Whether to send notifications about the creation of the event. Optional. The default is False.
* @return Google_Event
*/
public function quickAdd($calendarId, $text, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'text' => $text);
$params = array_merge($params, $optParams);
$data = $this->__call('quickAdd', array($params));
if ($this->useObjects()) {
return new Google_Event($data);
} else {
return $data;
}
}
/**
* Deletes an event. (events.delete)
*
* @param string $calendarId Calendar identifier.
* @param string $eventId Event identifier.
* @param array $optParams Optional parameters.
*
* @opt_param bool sendNotifications Whether to send notifications about the deletion of the event. Optional. The default is False.
*/
public function delete($calendarId, $eventId, $optParams = array()) {
$params = array('calendarId' => $calendarId, 'eventId' => $eventId);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
return $data;
}
}
/**
* Service definition for Google_Calendar (v3).
*
* <p>
* Lets you manipulate events and other calendar data.
* </p>
*
* <p>
* For more information about this service, see the
* <a href="http://code.google.com/apis/calendar/v3/using.html" target="_blank">API Documentation</a>
* </p>
*
* @author Google, Inc.
*/
class Google_CalendarService extends Google_Service {
public $freebusy;
public $settings;
public $calendarList;
public $calendars;
public $acl;
public $colors;
public $events;
/**
* Constructs the internal representation of the Calendar service.
*
* @param Google_Client $client
*/
public function __construct(Google_Client $client) {
$this->servicePath = 'calendar/v3/';
$this->version = 'v3';
$this->serviceName = 'calendar';
$client->addService($this->serviceName, $this->version);
$this->freebusy = new Google_FreebusyServiceResource($this, $this->serviceName, 'freebusy', json_decode('{"methods": {"query": {"scopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly"], "request": {"$ref": "FreeBusyRequest"}, "response": {"$ref": "FreeBusyResponse"}, "httpMethod": "POST", "path": "freeBusy", "id": "calendar.freebusy.query"}}}', true));
$this->settings = new Google_SettingsServiceResource($this, $this->serviceName, 'settings', json_decode('{"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly"], "path": "users/me/settings", "response": {"$ref": "Settings"}, "id": "calendar.settings.list", "httpMethod": "GET"}, "get": {"scopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly"], "parameters": {"setting": {"required": true, "type": "string", "location": "path"}}, "id": "calendar.settings.get", "httpMethod": "GET", "path": "users/me/settings/{setting}", "response": {"$ref": "Setting"}}}}', true));
$this->calendarList = new Google_CalendarListServiceResource($this, $this->serviceName, 'calendarList', json_decode('{"methods": {"insert": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"colorRgbFormat": {"type": "boolean", "location": "query"}}, "request": {"$ref": "CalendarListEntry"}, "response": {"$ref": "CalendarListEntry"}, "httpMethod": "POST", "path": "users/me/calendarList", "id": "calendar.calendarList.insert"}, "get": {"scopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly"], "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}}, "id": "calendar.calendarList.get", "httpMethod": "GET", "path": "users/me/calendarList/{calendarId}", "response": {"$ref": "CalendarListEntry"}}, "list": {"scopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly"], "parameters": {"pageToken": {"type": "string", "location": "query"}, "showHidden": {"type": "boolean", "location": "query"}, "maxResults": {"minimum": "1", "type": "integer", "location": "query", "format": "int32"}, "minAccessRole": {"enum": ["freeBusyReader", "owner", "reader", "writer"], "type": "string", "location": "query"}}, "response": {"$ref": "CalendarList"}, "httpMethod": "GET", "path": "users/me/calendarList", "id": "calendar.calendarList.list"}, "update": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"colorRgbFormat": {"type": "boolean", "location": "query"}, "calendarId": {"required": true, "type": "string", "location": "path"}}, "request": {"$ref": "CalendarListEntry"}, "response": {"$ref": "CalendarListEntry"}, "httpMethod": "PUT", "path": "users/me/calendarList/{calendarId}", "id": "calendar.calendarList.update"}, "patch": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"colorRgbFormat": {"type": "boolean", "location": "query"}, "calendarId": {"required": true, "type": "string", "location": "path"}}, "request": {"$ref": "CalendarListEntry"}, "response": {"$ref": "CalendarListEntry"}, "httpMethod": "PATCH", "path": "users/me/calendarList/{calendarId}", "id": "calendar.calendarList.patch"}, "delete": {"scopes": ["https://www.googleapis.com/auth/calendar"], "path": "users/me/calendarList/{calendarId}", "id": "calendar.calendarList.delete", "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}}, "httpMethod": "DELETE"}}}', true));
$this->calendars = new Google_CalendarsServiceResource($this, $this->serviceName, 'calendars', json_decode('{"methods": {"insert": {"scopes": ["https://www.googleapis.com/auth/calendar"], "request": {"$ref": "Calendar"}, "response": {"$ref": "Calendar"}, "httpMethod": "POST", "path": "calendars", "id": "calendar.calendars.insert"}, "get": {"scopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly"], "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}}, "id": "calendar.calendars.get", "httpMethod": "GET", "path": "calendars/{calendarId}", "response": {"$ref": "Calendar"}}, "clear": {"scopes": ["https://www.googleapis.com/auth/calendar"], "path": "calendars/{calendarId}/clear", "id": "calendar.calendars.clear", "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}}, "httpMethod": "POST"}, "update": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}}, "request": {"$ref": "Calendar"}, "response": {"$ref": "Calendar"}, "httpMethod": "PUT", "path": "calendars/{calendarId}", "id": "calendar.calendars.update"}, "patch": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}}, "request": {"$ref": "Calendar"}, "response": {"$ref": "Calendar"}, "httpMethod": "PATCH", "path": "calendars/{calendarId}", "id": "calendar.calendars.patch"}, "delete": {"scopes": ["https://www.googleapis.com/auth/calendar"], "path": "calendars/{calendarId}", "id": "calendar.calendars.delete", "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}}, "httpMethod": "DELETE"}}}', true));
$this->acl = new Google_AclServiceResource($this, $this->serviceName, 'acl', json_decode('{"methods": {"insert": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}}, "request": {"$ref": "AclRule"}, "response": {"$ref": "AclRule"}, "httpMethod": "POST", "path": "calendars/{calendarId}/acl", "id": "calendar.acl.insert"}, "get": {"scopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly"], "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}, "ruleId": {"required": true, "type": "string", "location": "path"}}, "id": "calendar.acl.get", "httpMethod": "GET", "path": "calendars/{calendarId}/acl/{ruleId}", "response": {"$ref": "AclRule"}}, "list": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}}, "id": "calendar.acl.list", "httpMethod": "GET", "path": "calendars/{calendarId}/acl", "response": {"$ref": "Acl"}}, "update": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}, "ruleId": {"required": true, "type": "string", "location": "path"}}, "request": {"$ref": "AclRule"}, "response": {"$ref": "AclRule"}, "httpMethod": "PUT", "path": "calendars/{calendarId}/acl/{ruleId}", "id": "calendar.acl.update"}, "patch": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}, "ruleId": {"required": true, "type": "string", "location": "path"}}, "request": {"$ref": "AclRule"}, "response": {"$ref": "AclRule"}, "httpMethod": "PATCH", "path": "calendars/{calendarId}/acl/{ruleId}", "id": "calendar.acl.patch"}, "delete": {"scopes": ["https://www.googleapis.com/auth/calendar"], "path": "calendars/{calendarId}/acl/{ruleId}", "id": "calendar.acl.delete", "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}, "ruleId": {"required": true, "type": "string", "location": "path"}}, "httpMethod": "DELETE"}}}', true));
$this->colors = new Google_ColorsServiceResource($this, $this->serviceName, 'colors', json_decode('{"methods": {"get": {"scopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly"], "path": "colors", "response": {"$ref": "Colors"}, "id": "calendar.colors.get", "httpMethod": "GET"}}}', true));
$this->events = new Google_EventsServiceResource($this, $this->serviceName, 'events', json_decode('{"methods": {"insert": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}, "sendNotifications": {"type": "boolean", "location": "query"}}, "request": {"$ref": "Event"}, "response": {"$ref": "Event"}, "httpMethod": "POST", "path": "calendars/{calendarId}/events", "id": "calendar.events.insert"}, "get": {"scopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly"], "parameters": {"eventId": {"required": true, "type": "string", "location": "path"}, "timeZone": {"type": "string", "location": "query"}, "calendarId": {"required": true, "type": "string", "location": "path"}, "alwaysIncludeEmail": {"type": "boolean", "location": "query"}, "maxAttendees": {"minimum": "1", "type": "integer", "location": "query", "format": "int32"}}, "id": "calendar.events.get", "httpMethod": "GET", "path": "calendars/{calendarId}/events/{eventId}", "response": {"$ref": "Event"}}, "move": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"eventId": {"required": true, "type": "string", "location": "path"}, "destination": {"required": true, "type": "string", "location": "query"}, "calendarId": {"required": true, "type": "string", "location": "path"}, "sendNotifications": {"type": "boolean", "location": "query"}}, "id": "calendar.events.move", "httpMethod": "POST", "path": "calendars/{calendarId}/events/{eventId}/move", "response": {"$ref": "Event"}}, "list": {"scopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly"], "parameters": {"orderBy": {"enum": ["startTime", "updated"], "type": "string", "location": "query"}, "showHiddenInvitations": {"type": "boolean", "location": "query"}, "showDeleted": {"type": "boolean", "location": "query"}, "iCalUID": {"type": "string", "location": "query"}, "updatedMin": {"type": "string", "location": "query", "format": "date-time"}, "singleEvents": {"type": "boolean", "location": "query"}, "alwaysIncludeEmail": {"type": "boolean", "location": "query"}, "maxResults": {"minimum": "1", "type": "integer", "location": "query", "format": "int32"}, "q": {"type": "string", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "calendarId": {"required": true, "type": "string", "location": "path"}, "timeMin": {"type": "string", "location": "query", "format": "date-time"}, "timeZone": {"type": "string", "location": "query"}, "timeMax": {"type": "string", "location": "query", "format": "date-time"}, "maxAttendees": {"minimum": "1", "type": "integer", "location": "query", "format": "int32"}}, "id": "calendar.events.list", "httpMethod": "GET", "path": "calendars/{calendarId}/events", "response": {"$ref": "Events"}}, "update": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"eventId": {"required": true, "type": "string", "location": "path"}, "calendarId": {"required": true, "type": "string", "location": "path"}, "alwaysIncludeEmail": {"type": "boolean", "location": "query"}, "sendNotifications": {"type": "boolean", "location": "query"}}, "request": {"$ref": "Event"}, "response": {"$ref": "Event"}, "httpMethod": "PUT", "path": "calendars/{calendarId}/events/{eventId}", "id": "calendar.events.update"}, "patch": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"eventId": {"required": true, "type": "string", "location": "path"}, "calendarId": {"required": true, "type": "string", "location": "path"}, "alwaysIncludeEmail": {"type": "boolean", "location": "query"}, "sendNotifications": {"type": "boolean", "location": "query"}}, "request": {"$ref": "Event"}, "response": {"$ref": "Event"}, "httpMethod": "PATCH", "path": "calendars/{calendarId}/events/{eventId}", "id": "calendar.events.patch"}, "instances": {"scopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly"], "parameters": {"eventId": {"required": true, "type": "string", "location": "path"}, "showDeleted": {"type": "boolean", "location": "query"}, "alwaysIncludeEmail": {"type": "boolean", "location": "query"}, "maxResults": {"minimum": "1", "type": "integer", "location": "query", "format": "int32"}, "pageToken": {"type": "string", "location": "query"}, "calendarId": {"required": true, "type": "string", "location": "path"}, "timeZone": {"type": "string", "location": "query"}, "originalStart": {"type": "string", "location": "query"}, "maxAttendees": {"minimum": "1", "type": "integer", "location": "query", "format": "int32"}}, "id": "calendar.events.instances", "httpMethod": "GET", "path": "calendars/{calendarId}/events/{eventId}/instances", "response": {"$ref": "Events"}}, "import": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"calendarId": {"required": true, "type": "string", "location": "path"}}, "request": {"$ref": "Event"}, "response": {"$ref": "Event"}, "httpMethod": "POST", "path": "calendars/{calendarId}/events/import", "id": "calendar.events.import"}, "quickAdd": {"scopes": ["https://www.googleapis.com/auth/calendar"], "parameters": {"text": {"required": true, "type": "string", "location": "query"}, "calendarId": {"required": true, "type": "string", "location": "path"}, "sendNotifications": {"type": "boolean", "location": "query"}}, "id": "calendar.events.quickAdd", "httpMethod": "POST", "path": "calendars/{calendarId}/events/quickAdd", "response": {"$ref": "Event"}}, "delete": {"scopes": ["https://www.googleapis.com/auth/calendar"], "path": "calendars/{calendarId}/events/{eventId}", "id": "calendar.events.delete", "parameters": {"eventId": {"required": true, "type": "string", "location": "path"}, "calendarId": {"required": true, "type": "string", "location": "path"}, "sendNotifications": {"type": "boolean", "location": "query"}}, "httpMethod": "DELETE"}}}', true));
}
}
class Google_Acl extends Google_Model {
public $nextPageToken;
protected $__itemsType = 'Google_AclRule';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $etag;
public function setNextPageToken($nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setItems(/* array(Google_AclRule) */ $items) {
$this->assertIsArray($items, 'Google_AclRule', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
}
class Google_AclRule extends Google_Model {
protected $__scopeType = 'Google_AclRuleScope';
protected $__scopeDataType = '';
public $scope;
public $kind;
public $etag;
public $role;
public $id;
public function setScope(Google_AclRuleScope $scope) {
$this->scope = $scope;
}
public function getScope() {
return $this->scope;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setRole($role) {
$this->role = $role;
}
public function getRole() {
return $this->role;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
class Google_AclRuleScope extends Google_Model {
public $type;
public $value;
public function setType($type) {
$this->type = $type;
}
public function getType() {
return $this->type;
}
public function setValue($value) {
$this->value = $value;
}
public function getValue() {
return $this->value;
}
}
class Google_Calendar extends Google_Model {
public $kind;
public $description;
public $summary;
public $etag;
public $location;
public $timeZone;
public $id;
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setDescription($description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setSummary($summary) {
$this->summary = $summary;
}
public function getSummary() {
return $this->summary;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setLocation($location) {
$this->location = $location;
}
public function getLocation() {
return $this->location;
}
public function setTimeZone($timeZone) {
$this->timeZone = $timeZone;
}
public function getTimeZone() {
return $this->timeZone;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
class Google_CalendarList extends Google_Model {
public $nextPageToken;
protected $__itemsType = 'Google_CalendarListEntry';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $etag;
public function setNextPageToken($nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setItems(/* array(Google_CalendarListEntry) */ $items) {
$this->assertIsArray($items, 'Google_CalendarListEntry', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
}
class Google_CalendarListEntry extends Google_Model {
public $kind;
public $foregroundColor;
protected $__defaultRemindersType = 'Google_EventReminder';
protected $__defaultRemindersDataType = 'array';
public $defaultReminders;
public $description;
public $colorId;
public $selected;
public $summary;
public $etag;
public $location;
public $backgroundColor;
public $summaryOverride;
public $timeZone;
public $hidden;
public $accessRole;
public $id;
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setForegroundColor($foregroundColor) {
$this->foregroundColor = $foregroundColor;
}
public function getForegroundColor() {
return $this->foregroundColor;
}
public function setDefaultReminders(/* array(Google_EventReminder) */ $defaultReminders) {
$this->assertIsArray($defaultReminders, 'Google_EventReminder', __METHOD__);
$this->defaultReminders = $defaultReminders;
}
public function getDefaultReminders() {
return $this->defaultReminders;
}
public function setDescription($description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setColorId($colorId) {
$this->colorId = $colorId;
}
public function getColorId() {
return $this->colorId;
}
public function setSelected($selected) {
$this->selected = $selected;
}
public function getSelected() {
return $this->selected;
}
public function setSummary($summary) {
$this->summary = $summary;
}
public function getSummary() {
return $this->summary;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setLocation($location) {
$this->location = $location;
}
public function getLocation() {
return $this->location;
}
public function setBackgroundColor($backgroundColor) {
$this->backgroundColor = $backgroundColor;
}
public function getBackgroundColor() {
return $this->backgroundColor;
}
public function setSummaryOverride($summaryOverride) {
$this->summaryOverride = $summaryOverride;
}
public function getSummaryOverride() {
return $this->summaryOverride;
}
public function setTimeZone($timeZone) {
$this->timeZone = $timeZone;
}
public function getTimeZone() {
return $this->timeZone;
}
public function setHidden($hidden) {
$this->hidden = $hidden;
}
public function getHidden() {
return $this->hidden;
}
public function setAccessRole($accessRole) {
$this->accessRole = $accessRole;
}
public function getAccessRole() {
return $this->accessRole;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
class Google_ColorDefinition extends Google_Model {
public $foreground;
public $background;
public function setForeground($foreground) {
$this->foreground = $foreground;
}
public function getForeground() {
return $this->foreground;
}
public function setBackground($background) {
$this->background = $background;
}
public function getBackground() {
return $this->background;
}
}
class Google_Colors extends Google_Model {
protected $__calendarType = 'Google_ColorDefinition';
protected $__calendarDataType = 'map';
public $calendar;
public $updated;
protected $__eventType = 'Google_ColorDefinition';
protected $__eventDataType = 'map';
public $event;
public $kind;
public function setCalendar(Google_ColorDefinition $calendar) {
$this->calendar = $calendar;
}
public function getCalendar() {
return $this->calendar;
}
public function setUpdated($updated) {
$this->updated = $updated;
}
public function getUpdated() {
return $this->updated;
}
public function setEvent(Google_ColorDefinition $event) {
$this->event = $event;
}
public function getEvent() {
return $this->event;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
}
class Google_Error extends Google_Model {
public $domain;
public $reason;
public function setDomain($domain) {
$this->domain = $domain;
}
public function getDomain() {
return $this->domain;
}
public function setReason($reason) {
$this->reason = $reason;
}
public function getReason() {
return $this->reason;
}
}
class Google_Event extends Google_Model {
protected $__creatorType = 'Google_EventCreator';
protected $__creatorDataType = '';
public $creator;
protected $__organizerType = 'Google_EventOrganizer';
protected $__organizerDataType = '';
public $organizer;
public $summary;
public $id;
protected $__attendeesType = 'Google_EventAttendee';
protected $__attendeesDataType = 'array';
public $attendees;
public $htmlLink;
public $recurrence;
protected $__startType = 'Google_EventDateTime';
protected $__startDataType = '';
public $start;
public $etag;
public $location;
public $recurringEventId;
protected $__gadgetType = 'Google_EventGadget';
protected $__gadgetDataType = '';
public $gadget;
public $status;
public $updated;
public $description;
public $iCalUID;
protected $__extendedPropertiesType = 'Google_EventExtendedProperties';
protected $__extendedPropertiesDataType = '';
public $extendedProperties;
public $endTimeUnspecified;
public $sequence;
public $visibility;
public $guestsCanModify;
protected $__endType = 'Google_EventDateTime';
protected $__endDataType = '';
public $end;
public $attendeesOmitted;
public $kind;
public $locked;
public $created;
public $colorId;
public $anyoneCanAddSelf;
protected $__remindersType = 'Google_EventReminders';
protected $__remindersDataType = '';
public $reminders;
public $guestsCanSeeOtherGuests;
protected $__originalStartTimeType = 'Google_EventDateTime';
protected $__originalStartTimeDataType = '';
public $originalStartTime;
public $guestsCanInviteOthers;
public $transparency;
public $privateCopy;
public function setCreator(Google_EventCreator $creator) {
$this->creator = $creator;
}
public function getCreator() {
return $this->creator;
}
public function setOrganizer(Google_EventOrganizer $organizer) {
$this->organizer = $organizer;
}
public function getOrganizer() {
return $this->organizer;
}
public function setSummary($summary) {
$this->summary = $summary;
}
public function getSummary() {
return $this->summary;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setAttendees(/* array(Google_EventAttendee) */ $attendees) {
$this->assertIsArray($attendees, 'Google_EventAttendee', __METHOD__);
$this->attendees = $attendees;
}
public function getAttendees() {
return $this->attendees;
}
public function setHtmlLink($htmlLink) {
$this->htmlLink = $htmlLink;
}
public function getHtmlLink() {
return $this->htmlLink;
}
public function setRecurrence(/* array(Google_string) */ $recurrence) {
$this->assertIsArray($recurrence, 'Google_string', __METHOD__);
$this->recurrence = $recurrence;
}
public function getRecurrence() {
return $this->recurrence;
}
public function setStart(Google_EventDateTime $start) {
$this->start = $start;
}
public function getStart() {
return $this->start;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setLocation($location) {
$this->location = $location;
}
public function getLocation() {
return $this->location;
}
public function setRecurringEventId($recurringEventId) {
$this->recurringEventId = $recurringEventId;
}
public function getRecurringEventId() {
return $this->recurringEventId;
}
public function setGadget(Google_EventGadget $gadget) {
$this->gadget = $gadget;
}
public function getGadget() {
return $this->gadget;
}
public function setStatus($status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
public function setUpdated($updated) {
$this->updated = $updated;
}
public function getUpdated() {
return $this->updated;
}
public function setDescription($description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setICalUID($iCalUID) {
$this->iCalUID = $iCalUID;
}
public function getICalUID() {
return $this->iCalUID;
}
public function setExtendedProperties(Google_EventExtendedProperties $extendedProperties) {
$this->extendedProperties = $extendedProperties;
}
public function getExtendedProperties() {
return $this->extendedProperties;
}
public function setEndTimeUnspecified($endTimeUnspecified) {
$this->endTimeUnspecified = $endTimeUnspecified;
}
public function getEndTimeUnspecified() {
return $this->endTimeUnspecified;
}
public function setSequence($sequence) {
$this->sequence = $sequence;
}
public function getSequence() {
return $this->sequence;
}
public function setVisibility($visibility) {
$this->visibility = $visibility;
}
public function getVisibility() {
return $this->visibility;
}
public function setGuestsCanModify($guestsCanModify) {
$this->guestsCanModify = $guestsCanModify;
}
public function getGuestsCanModify() {
return $this->guestsCanModify;
}
public function setEnd(Google_EventDateTime $end) {
$this->end = $end;
}
public function getEnd() {
return $this->end;
}
public function setAttendeesOmitted($attendeesOmitted) {
$this->attendeesOmitted = $attendeesOmitted;
}
public function getAttendeesOmitted() {
return $this->attendeesOmitted;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setLocked($locked) {
$this->locked = $locked;
}
public function getLocked() {
return $this->locked;
}
public function setCreated($created) {
$this->created = $created;
}
public function getCreated() {
return $this->created;
}
public function setColorId($colorId) {
$this->colorId = $colorId;
}
public function getColorId() {
return $this->colorId;
}
public function setAnyoneCanAddSelf($anyoneCanAddSelf) {
$this->anyoneCanAddSelf = $anyoneCanAddSelf;
}
public function getAnyoneCanAddSelf() {
return $this->anyoneCanAddSelf;
}
public function setReminders(Google_EventReminders $reminders) {
$this->reminders = $reminders;
}
public function getReminders() {
return $this->reminders;
}
public function setGuestsCanSeeOtherGuests($guestsCanSeeOtherGuests) {
$this->guestsCanSeeOtherGuests = $guestsCanSeeOtherGuests;
}
public function getGuestsCanSeeOtherGuests() {
return $this->guestsCanSeeOtherGuests;
}
public function setOriginalStartTime(Google_EventDateTime $originalStartTime) {
$this->originalStartTime = $originalStartTime;
}
public function getOriginalStartTime() {
return $this->originalStartTime;
}
public function setGuestsCanInviteOthers($guestsCanInviteOthers) {
$this->guestsCanInviteOthers = $guestsCanInviteOthers;
}
public function getGuestsCanInviteOthers() {
return $this->guestsCanInviteOthers;
}
public function setTransparency($transparency) {
$this->transparency = $transparency;
}
public function getTransparency() {
return $this->transparency;
}
public function setPrivateCopy($privateCopy) {
$this->privateCopy = $privateCopy;
}
public function getPrivateCopy() {
return $this->privateCopy;
}
}
class Google_EventAttendee extends Google_Model {
public $comment;
public $displayName;
public $responseStatus;
public $self;
public $id;
public $additionalGuests;
public $resource;
public $organizer;
public $optional;
public $email;
public function setComment($comment) {
$this->comment = $comment;
}
public function getComment() {
return $this->comment;
}
public function setDisplayName($displayName) {
$this->displayName = $displayName;
}
public function getDisplayName() {
return $this->displayName;
}
public function setResponseStatus($responseStatus) {
$this->responseStatus = $responseStatus;
}
public function getResponseStatus() {
return $this->responseStatus;
}
public function setSelf($self) {
$this->self = $self;
}
public function getSelf() {
return $this->self;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setAdditionalGuests($additionalGuests) {
$this->additionalGuests = $additionalGuests;
}
public function getAdditionalGuests() {
return $this->additionalGuests;
}
public function setResource($resource) {
$this->resource = $resource;
}
public function getResource() {
return $this->resource;
}
public function setOrganizer($organizer) {
$this->organizer = $organizer;
}
public function getOrganizer() {
return $this->organizer;
}
public function setOptional($optional) {
$this->optional = $optional;
}
public function getOptional() {
return $this->optional;
}
public function setEmail($email) {
$this->email = $email;
}
public function getEmail() {
return $this->email;
}
}
class Google_EventCreator extends Google_Model {
public $self;
public $displayName;
public $email;
public $id;
public function setSelf($self) {
$this->self = $self;
}
public function getSelf() {
return $this->self;
}
public function setDisplayName($displayName) {
$this->displayName = $displayName;
}
public function getDisplayName() {
return $this->displayName;
}
public function setEmail($email) {
$this->email = $email;
}
public function getEmail() {
return $this->email;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
class Google_EventDateTime extends Google_Model {
public $date;
public $timeZone;
public $dateTime;
public function setDate($date) {
$this->date = $date;
}
public function getDate() {
return $this->date;
}
public function setTimeZone($timeZone) {
$this->timeZone = $timeZone;
}
public function getTimeZone() {
return $this->timeZone;
}
public function setDateTime($dateTime) {
$this->dateTime = $dateTime;
}
public function getDateTime() {
return $this->dateTime;
}
}
class Google_EventExtendedProperties extends Google_Model {
public $shared;
public $private;
public function setShared($shared) {
$this->shared = $shared;
}
public function getShared() {
return $this->shared;
}
public function setPrivate($private) {
$this->private = $private;
}
public function getPrivate() {
return $this->private;
}
}
class Google_EventGadget extends Google_Model {
public $preferences;
public $title;
public $height;
public $width;
public $link;
public $type;
public $display;
public $iconLink;
public function setPreferences($preferences) {
$this->preferences = $preferences;
}
public function getPreferences() {
return $this->preferences;
}
public function setTitle($title) {
$this->title = $title;
}
public function getTitle() {
return $this->title;
}
public function setHeight($height) {
$this->height = $height;
}
public function getHeight() {
return $this->height;
}
public function setWidth($width) {
$this->width = $width;
}
public function getWidth() {
return $this->width;
}
public function setLink($link) {
$this->link = $link;
}
public function getLink() {
return $this->link;
}
public function setType($type) {
$this->type = $type;
}
public function getType() {
return $this->type;
}
public function setDisplay($display) {
$this->display = $display;
}
public function getDisplay() {
return $this->display;
}
public function setIconLink($iconLink) {
$this->iconLink = $iconLink;
}
public function getIconLink() {
return $this->iconLink;
}
}
class Google_EventOrganizer extends Google_Model {
public $self;
public $displayName;
public $email;
public $id;
public function setSelf($self) {
$this->self = $self;
}
public function getSelf() {
return $this->self;
}
public function setDisplayName($displayName) {
$this->displayName = $displayName;
}
public function getDisplayName() {
return $this->displayName;
}
public function setEmail($email) {
$this->email = $email;
}
public function getEmail() {
return $this->email;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
class Google_EventReminder extends Google_Model {
public $minutes;
public $method;
public function setMinutes($minutes) {
$this->minutes = $minutes;
}
public function getMinutes() {
return $this->minutes;
}
public function setMethod($method) {
$this->method = $method;
}
public function getMethod() {
return $this->method;
}
}
class Google_EventReminders extends Google_Model {
protected $__overridesType = 'Google_EventReminder';
protected $__overridesDataType = 'array';
public $overrides;
public $useDefault;
public function setOverrides(/* array(Google_EventReminder) */ $overrides) {
$this->assertIsArray($overrides, 'Google_EventReminder', __METHOD__);
$this->overrides = $overrides;
}
public function getOverrides() {
return $this->overrides;
}
public function setUseDefault($useDefault) {
$this->useDefault = $useDefault;
}
public function getUseDefault() {
return $this->useDefault;
}
}
class Google_Events extends Google_Model {
public $nextPageToken;
public $kind;
protected $__defaultRemindersType = 'Google_EventReminder';
protected $__defaultRemindersDataType = 'array';
public $defaultReminders;
public $description;
protected $__itemsType = 'Google_Event';
protected $__itemsDataType = 'array';
public $items;
public $updated;
public $summary;
public $etag;
public $timeZone;
public $accessRole;
public function setNextPageToken($nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setDefaultReminders(/* array(Google_EventReminder) */ $defaultReminders) {
$this->assertIsArray($defaultReminders, 'Google_EventReminder', __METHOD__);
$this->defaultReminders = $defaultReminders;
}
public function getDefaultReminders() {
return $this->defaultReminders;
}
public function setDescription($description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setItems(/* array(Google_Event) */ $items) {
$this->assertIsArray($items, 'Google_Event', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setUpdated($updated) {
$this->updated = $updated;
}
public function getUpdated() {
return $this->updated;
}
public function setSummary($summary) {
$this->summary = $summary;
}
public function getSummary() {
return $this->summary;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setTimeZone($timeZone) {
$this->timeZone = $timeZone;
}
public function getTimeZone() {
return $this->timeZone;
}
public function setAccessRole($accessRole) {
$this->accessRole = $accessRole;
}
public function getAccessRole() {
return $this->accessRole;
}
}
class Google_FreeBusyCalendar extends Google_Model {
protected $__busyType = 'Google_TimePeriod';
protected $__busyDataType = 'array';
public $busy;
protected $__errorsType = 'Google_Error';
protected $__errorsDataType = 'array';
public $errors;
public function setBusy(/* array(Google_TimePeriod) */ $busy) {
$this->assertIsArray($busy, 'Google_TimePeriod', __METHOD__);
$this->busy = $busy;
}
public function getBusy() {
return $this->busy;
}
public function setErrors(/* array(Google_Error) */ $errors) {
$this->assertIsArray($errors, 'Google_Error', __METHOD__);
$this->errors = $errors;
}
public function getErrors() {
return $this->errors;
}
}
class Google_FreeBusyGroup extends Google_Model {
protected $__errorsType = 'Google_Error';
protected $__errorsDataType = 'array';
public $errors;
public $calendars;
public function setErrors(/* array(Google_Error) */ $errors) {
$this->assertIsArray($errors, 'Google_Error', __METHOD__);
$this->errors = $errors;
}
public function getErrors() {
return $this->errors;
}
public function setCalendars(/* array(Google_string) */ $calendars) {
$this->assertIsArray($calendars, 'Google_string', __METHOD__);
$this->calendars = $calendars;
}
public function getCalendars() {
return $this->calendars;
}
}
class Google_FreeBusyRequest extends Google_Model {
public $calendarExpansionMax;
public $groupExpansionMax;
public $timeMax;
protected $__itemsType = 'Google_FreeBusyRequestItem';
protected $__itemsDataType = 'array';
public $items;
public $timeMin;
public $timeZone;
public function setCalendarExpansionMax($calendarExpansionMax) {
$this->calendarExpansionMax = $calendarExpansionMax;
}
public function getCalendarExpansionMax() {
return $this->calendarExpansionMax;
}
public function setGroupExpansionMax($groupExpansionMax) {
$this->groupExpansionMax = $groupExpansionMax;
}
public function getGroupExpansionMax() {
return $this->groupExpansionMax;
}
public function setTimeMax($timeMax) {
$this->timeMax = $timeMax;
}
public function getTimeMax() {
return $this->timeMax;
}
public function setItems(/* array(Google_FreeBusyRequestItem) */ $items) {
$this->assertIsArray($items, 'Google_FreeBusyRequestItem', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setTimeMin($timeMin) {
$this->timeMin = $timeMin;
}
public function getTimeMin() {
return $this->timeMin;
}
public function setTimeZone($timeZone) {
$this->timeZone = $timeZone;
}
public function getTimeZone() {
return $this->timeZone;
}
}
class Google_FreeBusyRequestItem extends Google_Model {
public $id;
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
class Google_FreeBusyResponse extends Google_Model {
public $timeMax;
public $kind;
protected $__calendarsType = 'Google_FreeBusyCalendar';
protected $__calendarsDataType = 'map';
public $calendars;
public $timeMin;
protected $__groupsType = 'Google_FreeBusyGroup';
protected $__groupsDataType = 'map';
public $groups;
public function setTimeMax($timeMax) {
$this->timeMax = $timeMax;
}
public function getTimeMax() {
return $this->timeMax;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setCalendars(Google_FreeBusyCalendar $calendars) {
$this->calendars = $calendars;
}
public function getCalendars() {
return $this->calendars;
}
public function setTimeMin($timeMin) {
$this->timeMin = $timeMin;
}
public function getTimeMin() {
return $this->timeMin;
}
public function setGroups(Google_FreeBusyGroup $groups) {
$this->groups = $groups;
}
public function getGroups() {
return $this->groups;
}
}
class Google_Setting extends Google_Model {
public $kind;
public $etag;
public $id;
public $value;
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setValue($value) {
$this->value = $value;
}
public function getValue() {
return $this->value;
}
}
class Google_Settings extends Google_Model {
protected $__itemsType = 'Google_Setting';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $etag;
public function setItems(/* array(Google_Setting) */ $items) {
$this->assertIsArray($items, 'Google_Setting', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
}
class Google_TimePeriod extends Google_Model {
public $start;
public $end;
public function setStart($start) {
$this->start = $start;
}
public function getStart() {
return $this->start;
}
public function setEnd($end) {
$this->end = $end;
}
public function getEnd() {
return $this->end;
}
}