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 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183
|
# Copyright 2015 Google Inc.
#
# 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.
require 'date'
require 'google/apis/core/base_service'
require 'google/apis/core/json_representation'
require 'google/apis/core/hashable'
require 'google/apis/errors'
module Google
module Apis
module CalendarV3
#
class Acl
include Google::Apis::Core::Hashable
# ETag of the collection.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# List of rules on the access control list.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::CalendarV3::AclRule>]
attr_accessor :items
# Type of the collection ("calendar#acl").
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Token used to access the next page of this result. Omitted if no further
# results are available, in which case nextSyncToken is provided.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
# 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 nextPageToken is provided.
# Corresponds to the JSON property `nextSyncToken`
# @return [String]
attr_accessor :next_sync_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@etag = args[:etag] if args.key?(:etag)
@items = args[:items] if args.key?(:items)
@kind = args[:kind] if args.key?(:kind)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
@next_sync_token = args[:next_sync_token] if args.key?(:next_sync_token)
end
end
#
class AclRule
include Google::Apis::Core::Hashable
# ETag of the resource.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# Identifier of the ACL rule.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Type of the resource ("calendar#aclRule").
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The role assigned to the scope. Possible values are:
# - "none" - Provides no access.
# - "freeBusyReader" - Provides read access to free/busy information.
# - "reader" - Provides read access to the calendar. Private events will appear
# to users with reader access, but event details will be hidden.
# - "writer" - Provides read and write access to the calendar. Private events
# will appear to users with writer access, and event details will be visible.
# - "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.
# Corresponds to the JSON property `role`
# @return [String]
attr_accessor :role
# The scope of the rule.
# Corresponds to the JSON property `scope`
# @return [Google::Apis::CalendarV3::AclRule::Scope]
attr_accessor :scope
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@etag = args[:etag] if args.key?(:etag)
@id = args[:id] if args.key?(:id)
@kind = args[:kind] if args.key?(:kind)
@role = args[:role] if args.key?(:role)
@scope = args[:scope] if args.key?(:scope)
end
# The scope of the rule.
class Scope
include Google::Apis::Core::Hashable
# The type of the scope. Possible values are:
# - "default" - The public scope. This is the default value.
# - "user" - Limits the scope to a single user.
# - "group" - Limits the scope to a group.
# - "domain" - Limits the scope to a domain. Note: The permissions granted to
# the "default", or public, scope apply to any user, authenticated or not.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
# The email address of a user or group, or the name of a domain, depending on
# the scope type. Omitted for type "default".
# Corresponds to the JSON property `value`
# @return [String]
attr_accessor :value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@type = args[:type] if args.key?(:type)
@value = args[:value] if args.key?(:value)
end
end
end
#
class Calendar
include Google::Apis::Core::Hashable
# Conferencing properties for this calendar, for example what types of
# conferences are allowed.
# Corresponds to the JSON property `conferenceProperties`
# @return [Google::Apis::CalendarV3::ConferenceProperties]
attr_accessor :conference_properties
# Description of the calendar. Optional.
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
# ETag of the resource.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# Identifier of the calendar. To retrieve IDs call the calendarList.list()
# method.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Type of the resource ("calendar#calendar").
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Geographic location of the calendar as free-form text. Optional.
# Corresponds to the JSON property `location`
# @return [String]
attr_accessor :location
# Title of the calendar.
# Corresponds to the JSON property `summary`
# @return [String]
attr_accessor :summary
# The time zone of the calendar. (Formatted as an IANA Time Zone Database name,
# e.g. "Europe/Zurich".) Optional.
# Corresponds to the JSON property `timeZone`
# @return [String]
attr_accessor :time_zone
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@conference_properties = args[:conference_properties] if args.key?(:conference_properties)
@description = args[:description] if args.key?(:description)
@etag = args[:etag] if args.key?(:etag)
@id = args[:id] if args.key?(:id)
@kind = args[:kind] if args.key?(:kind)
@location = args[:location] if args.key?(:location)
@summary = args[:summary] if args.key?(:summary)
@time_zone = args[:time_zone] if args.key?(:time_zone)
end
end
#
class CalendarList
include Google::Apis::Core::Hashable
# ETag of the collection.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# Calendars that are present on the user's calendar list.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::CalendarV3::CalendarListEntry>]
attr_accessor :items
# Type of the collection ("calendar#calendarList").
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Token used to access the next page of this result. Omitted if no further
# results are available, in which case nextSyncToken is provided.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
# 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 nextPageToken is provided.
# Corresponds to the JSON property `nextSyncToken`
# @return [String]
attr_accessor :next_sync_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@etag = args[:etag] if args.key?(:etag)
@items = args[:items] if args.key?(:items)
@kind = args[:kind] if args.key?(:kind)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
@next_sync_token = args[:next_sync_token] if args.key?(:next_sync_token)
end
end
#
class CalendarListEntry
include Google::Apis::Core::Hashable
# The effective access role that the authenticated user has on the calendar.
# Read-only. Possible values are:
# - "freeBusyReader" - Provides read access to free/busy information.
# - "reader" - Provides read access to the calendar. Private events will appear
# to users with reader access, but event details will be hidden.
# - "writer" - Provides read and write access to the calendar. Private events
# will appear to users with writer access, and event details will be visible.
# - "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.
# Corresponds to the JSON property `accessRole`
# @return [String]
attr_accessor :access_role
# 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 colorRgbFormat=true in the parameters of the
# insert, update and patch methods. Optional.
# Corresponds to the JSON property `backgroundColor`
# @return [String]
attr_accessor :background_color
# 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 backgroundColor and foregroundColor properties and can be
# ignored when using these properties. Optional.
# Corresponds to the JSON property `colorId`
# @return [String]
attr_accessor :color_id
# Conferencing properties for this calendar, for example what types of
# conferences are allowed.
# Corresponds to the JSON property `conferenceProperties`
# @return [Google::Apis::CalendarV3::ConferenceProperties]
attr_accessor :conference_properties
# The default reminders that the authenticated user has for this calendar.
# Corresponds to the JSON property `defaultReminders`
# @return [Array<Google::Apis::CalendarV3::EventReminder>]
attr_accessor :default_reminders
# Whether this calendar list entry has been deleted from the calendar list. Read-
# only. Optional. The default is False.
# Corresponds to the JSON property `deleted`
# @return [Boolean]
attr_accessor :deleted
alias_method :deleted?, :deleted
# Description of the calendar. Optional. Read-only.
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
# ETag of the resource.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# 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 specify colorRgbFormat=true in the parameters of the
# insert, update and patch methods. Optional.
# Corresponds to the JSON property `foregroundColor`
# @return [String]
attr_accessor :foreground_color
# Whether the calendar has been hidden from the list. Optional. The default is
# False.
# Corresponds to the JSON property `hidden`
# @return [Boolean]
attr_accessor :hidden
alias_method :hidden?, :hidden
# Identifier of the calendar.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Type of the resource ("calendar#calendarListEntry").
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Geographic location of the calendar as free-form text. Optional. Read-only.
# Corresponds to the JSON property `location`
# @return [String]
attr_accessor :location
# The notifications that the authenticated user is receiving for this calendar.
# Corresponds to the JSON property `notificationSettings`
# @return [Google::Apis::CalendarV3::CalendarListEntry::NotificationSettings]
attr_accessor :notification_settings
# Whether the calendar is the primary calendar of the authenticated user. Read-
# only. Optional. The default is False.
# Corresponds to the JSON property `primary`
# @return [Boolean]
attr_accessor :primary
alias_method :primary?, :primary
# Whether the calendar content shows up in the calendar UI. Optional. The
# default is False.
# Corresponds to the JSON property `selected`
# @return [Boolean]
attr_accessor :selected
alias_method :selected?, :selected
# Title of the calendar. Read-only.
# Corresponds to the JSON property `summary`
# @return [String]
attr_accessor :summary
# The summary that the authenticated user has set for this calendar. Optional.
# Corresponds to the JSON property `summaryOverride`
# @return [String]
attr_accessor :summary_override
# The time zone of the calendar. Optional. Read-only.
# Corresponds to the JSON property `timeZone`
# @return [String]
attr_accessor :time_zone
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@access_role = args[:access_role] if args.key?(:access_role)
@background_color = args[:background_color] if args.key?(:background_color)
@color_id = args[:color_id] if args.key?(:color_id)
@conference_properties = args[:conference_properties] if args.key?(:conference_properties)
@default_reminders = args[:default_reminders] if args.key?(:default_reminders)
@deleted = args[:deleted] if args.key?(:deleted)
@description = args[:description] if args.key?(:description)
@etag = args[:etag] if args.key?(:etag)
@foreground_color = args[:foreground_color] if args.key?(:foreground_color)
@hidden = args[:hidden] if args.key?(:hidden)
@id = args[:id] if args.key?(:id)
@kind = args[:kind] if args.key?(:kind)
@location = args[:location] if args.key?(:location)
@notification_settings = args[:notification_settings] if args.key?(:notification_settings)
@primary = args[:primary] if args.key?(:primary)
@selected = args[:selected] if args.key?(:selected)
@summary = args[:summary] if args.key?(:summary)
@summary_override = args[:summary_override] if args.key?(:summary_override)
@time_zone = args[:time_zone] if args.key?(:time_zone)
end
# The notifications that the authenticated user is receiving for this calendar.
class NotificationSettings
include Google::Apis::Core::Hashable
# The list of notifications set for this calendar.
# Corresponds to the JSON property `notifications`
# @return [Array<Google::Apis::CalendarV3::CalendarNotification>]
attr_accessor :notifications
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@notifications = args[:notifications] if args.key?(:notifications)
end
end
end
#
class CalendarNotification
include Google::Apis::Core::Hashable
# The method used to deliver the notification. Possible values are:
# - "email" - Notifications are sent via email.
# - "sms" - Deprecated. Once this feature is shutdown, the API will no longer
# return notifications using this method. Any newly added SMS notifications will
# be ignored. See Google Calendar SMS notifications to be removed for more
# information.
# Notifications are sent via SMS. This value is read-only and is ignored on
# inserts and updates. SMS notifications are only available for G Suite
# customers.
# Required when adding a notification.
# Corresponds to the JSON property `method`
# @return [String]
attr_accessor :delivery_method
# The type of notification. Possible values are:
# - "eventCreation" - Notification sent when a new event is put on the calendar.
# - "eventChange" - Notification sent when an event is changed.
# - "eventCancellation" - Notification sent when an event is cancelled.
# - "eventResponse" - Notification sent when an attendee responds to the event
# invitation.
# - "agenda" - An agenda with the events of the day (sent out in the morning).
# Required when adding a notification.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@delivery_method = args[:delivery_method] if args.key?(:delivery_method)
@type = args[:type] if args.key?(:type)
end
end
#
class Channel
include Google::Apis::Core::Hashable
# The address where notifications are delivered for this channel.
# Corresponds to the JSON property `address`
# @return [String]
attr_accessor :address
# Date and time of notification channel expiration, expressed as a Unix
# timestamp, in milliseconds. Optional.
# Corresponds to the JSON property `expiration`
# @return [Fixnum]
attr_accessor :expiration
# A UUID or similar unique string that identifies this channel.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Identifies this as a notification channel used to watch for changes to a
# resource, which is "api#channel".
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Additional parameters controlling delivery channel behavior. Optional.
# Corresponds to the JSON property `params`
# @return [Hash<String,String>]
attr_accessor :params
# A Boolean value to indicate whether payload is wanted. Optional.
# Corresponds to the JSON property `payload`
# @return [Boolean]
attr_accessor :payload
alias_method :payload?, :payload
# An opaque ID that identifies the resource being watched on this channel.
# Stable across different API versions.
# Corresponds to the JSON property `resourceId`
# @return [String]
attr_accessor :resource_id
# A version-specific identifier for the watched resource.
# Corresponds to the JSON property `resourceUri`
# @return [String]
attr_accessor :resource_uri
# An arbitrary string delivered to the target address with each notification
# delivered over this channel. Optional.
# Corresponds to the JSON property `token`
# @return [String]
attr_accessor :token
# The type of delivery mechanism used for this channel.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@address = args[:address] if args.key?(:address)
@expiration = args[:expiration] if args.key?(:expiration)
@id = args[:id] if args.key?(:id)
@kind = args[:kind] if args.key?(:kind)
@params = args[:params] if args.key?(:params)
@payload = args[:payload] if args.key?(:payload)
@resource_id = args[:resource_id] if args.key?(:resource_id)
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
@token = args[:token] if args.key?(:token)
@type = args[:type] if args.key?(:type)
end
end
#
class ColorDefinition
include Google::Apis::Core::Hashable
# The background color associated with this color definition.
# Corresponds to the JSON property `background`
# @return [String]
attr_accessor :background
# The foreground color that can be used to write on top of a background with '
# background' color.
# Corresponds to the JSON property `foreground`
# @return [String]
attr_accessor :foreground
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@background = args[:background] if args.key?(:background)
@foreground = args[:foreground] if args.key?(:foreground)
end
end
#
class Colors
include Google::Apis::Core::Hashable
# 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 color field. Read-only.
# Corresponds to the JSON property `calendar`
# @return [Hash<String,Google::Apis::CalendarV3::ColorDefinition>]
attr_accessor :calendar
# 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 color field. Read-
# only.
# Corresponds to the JSON property `event`
# @return [Hash<String,Google::Apis::CalendarV3::ColorDefinition>]
attr_accessor :event
# Type of the resource ("calendar#colors").
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Last modification time of the color palette (as a RFC3339 timestamp). Read-
# only.
# Corresponds to the JSON property `updated`
# @return [DateTime]
attr_accessor :updated
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@calendar = args[:calendar] if args.key?(:calendar)
@event = args[:event] if args.key?(:event)
@kind = args[:kind] if args.key?(:kind)
@updated = args[:updated] if args.key?(:updated)
end
end
#
class ConferenceData
include Google::Apis::Core::Hashable
# The ID of the conference.
# Can be used by developers to keep track of conferences, should not be
# displayed to users.
# Values for solution types:
# - "eventHangout": unset.
# - "eventNamedHangout": the name of the Hangout.
# - "hangoutsMeet": the 10-letter meeting code, for example "aaa-bbbb-ccc".
# - "addOn": defined by 3P conference provider. Optional.
# Corresponds to the JSON property `conferenceId`
# @return [String]
attr_accessor :conference_id
# The conference solution, such as Hangouts or Hangouts Meet.
# Unset for a conference with a failed create request.
# Either conferenceSolution and at least one entryPoint, or createRequest is
# required.
# Corresponds to the JSON property `conferenceSolution`
# @return [Google::Apis::CalendarV3::ConferenceSolution]
attr_accessor :conference_solution
# 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.
# Either conferenceSolution and at least one entryPoint, or createRequest is
# required.
# Corresponds to the JSON property `createRequest`
# @return [Google::Apis::CalendarV3::CreateConferenceRequest]
attr_accessor :create_request
# Information about individual conference entry points, such as URLs or phone
# numbers.
# All of them must belong to the same conference.
# Either conferenceSolution and at least one entryPoint, or createRequest is
# required.
# Corresponds to the JSON property `entryPoints`
# @return [Array<Google::Apis::CalendarV3::EntryPoint>]
attr_accessor :entry_points
# 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.
# Corresponds to the JSON property `notes`
# @return [String]
attr_accessor :notes
# Additional properties related to a conference. An example would be a solution-
# specific setting for enabling video streaming.
# Corresponds to the JSON property `parameters`
# @return [Google::Apis::CalendarV3::ConferenceParameters]
attr_accessor :parameters
# The signature of the conference data.
# Generated on server side. Must be preserved while copying the conference data
# between events, otherwise the conference data will not be copied.
# Unset for a conference with a failed create request.
# Optional for a conference with a pending create request.
# Corresponds to the JSON property `signature`
# @return [String]
attr_accessor :signature
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@conference_id = args[:conference_id] if args.key?(:conference_id)
@conference_solution = args[:conference_solution] if args.key?(:conference_solution)
@create_request = args[:create_request] if args.key?(:create_request)
@entry_points = args[:entry_points] if args.key?(:entry_points)
@notes = args[:notes] if args.key?(:notes)
@parameters = args[:parameters] if args.key?(:parameters)
@signature = args[:signature] if args.key?(:signature)
end
end
#
class ConferenceParameters
include Google::Apis::Core::Hashable
# Additional add-on specific data.
# Corresponds to the JSON property `addOnParameters`
# @return [Google::Apis::CalendarV3::ConferenceParametersAddOnParameters]
attr_accessor :add_on_parameters
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@add_on_parameters = args[:add_on_parameters] if args.key?(:add_on_parameters)
end
end
#
class ConferenceParametersAddOnParameters
include Google::Apis::Core::Hashable
#
# Corresponds to the JSON property `parameters`
# @return [Hash<String,String>]
attr_accessor :parameters
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@parameters = args[:parameters] if args.key?(:parameters)
end
end
#
class ConferenceProperties
include Google::Apis::Core::Hashable
# The types of conference solutions that are supported for this calendar.
# The possible values are:
# - "eventHangout"
# - "eventNamedHangout"
# - "hangoutsMeet" Optional.
# Corresponds to the JSON property `allowedConferenceSolutionTypes`
# @return [Array<String>]
attr_accessor :allowed_conference_solution_types
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@allowed_conference_solution_types = args[:allowed_conference_solution_types] if args.key?(:allowed_conference_solution_types)
end
end
#
class ConferenceRequestStatus
include Google::Apis::Core::Hashable
# The current status of the conference create request. Read-only.
# The possible values are:
# - "pending": the conference create request is still being processed.
# - "success": the conference create request succeeded, the entry points are
# populated.
# - "failure": the conference create request failed, there are no entry points.
# Corresponds to the JSON property `statusCode`
# @return [String]
attr_accessor :status_code
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@status_code = args[:status_code] if args.key?(:status_code)
end
end
#
class ConferenceSolution
include Google::Apis::Core::Hashable
# The user-visible icon for this solution.
# Corresponds to the JSON property `iconUri`
# @return [String]
attr_accessor :icon_uri
# The key which can uniquely identify the conference solution for this event.
# Corresponds to the JSON property `key`
# @return [Google::Apis::CalendarV3::ConferenceSolutionKey]
attr_accessor :key
# The user-visible name of this solution. Not localized.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@icon_uri = args[:icon_uri] if args.key?(:icon_uri)
@key = args[:key] if args.key?(:key)
@name = args[:name] if args.key?(:name)
end
end
#
class ConferenceSolutionKey
include Google::Apis::Core::Hashable
# The conference solution type.
# If a client encounters an unfamiliar or empty type, it should still be able to
# display the entry points. However, it should disallow modifications.
# The possible values are:
# - "eventHangout" for Hangouts for consumers (http://hangouts.google.com)
# - "eventNamedHangout" for classic Hangouts for G Suite users (http://hangouts.
# google.com)
# - "hangoutsMeet" for Hangouts Meet (http://meet.google.com)
# - "addOn" for 3P conference providers
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@type = args[:type] if args.key?(:type)
end
end
#
class CreateConferenceRequest
include Google::Apis::Core::Hashable
# The conference solution, such as Hangouts or Hangouts Meet.
# Corresponds to the JSON property `conferenceSolutionKey`
# @return [Google::Apis::CalendarV3::ConferenceSolutionKey]
attr_accessor :conference_solution_key
# The client-generated unique ID for this request.
# 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.
# Corresponds to the JSON property `requestId`
# @return [String]
attr_accessor :request_id
# The status of the conference create request.
# Corresponds to the JSON property `status`
# @return [Google::Apis::CalendarV3::ConferenceRequestStatus]
attr_accessor :status
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@conference_solution_key = args[:conference_solution_key] if args.key?(:conference_solution_key)
@request_id = args[:request_id] if args.key?(:request_id)
@status = args[:status] if args.key?(:status)
end
end
#
class EntryPoint
include Google::Apis::Core::Hashable
# The access code to access the conference. The maximum length is 128 characters.
# When creating new conference data, populate only the subset of `meetingCode,
# accessCode, passcode, password, pin` fields that match the terminology that
# the conference provider uses. Only the populated fields should be displayed.
# Optional.
# Corresponds to the JSON property `accessCode`
# @return [String]
attr_accessor :access_code
# 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.
# Corresponds to the JSON property `entryPointFeatures`
# @return [Array<String>]
attr_accessor :entry_point_features
# The type of the conference entry point.
# Possible values are:
# - "video" - joining a conference over HTTP. A conference can have zero or one
# video entry point.
# - "phone" - joining a conference by dialing a phone number. A conference can
# have zero or more phone entry points.
# - "sip" - joining a conference over SIP. A conference can have zero or one sip
# entry point.
# - "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 point is not a valid conference.
# Corresponds to the JSON property `entryPointType`
# @return [String]
attr_accessor :entry_point_type
# The label for the URI. Visible to end users. Not localized. The maximum length
# is 512 characters.
# Examples:
# - for video: meet.google.com/aaa-bbbb-ccc
# - for phone: +1 123 268 2601
# - for sip: 12345678@altostrat.com
# - for more: should not be filled
# Optional.
# Corresponds to the JSON property `label`
# @return [String]
attr_accessor :label
# The meeting code to access the conference. The maximum length is 128
# characters.
# When creating new conference data, populate only the subset of `meetingCode,
# accessCode, passcode, password, pin` fields that match the terminology that
# the conference provider uses. Only the populated fields should be displayed.
# Optional.
# Corresponds to the JSON property `meetingCode`
# @return [String]
attr_accessor :meeting_code
# The passcode to access the conference. The maximum length is 128 characters.
# When creating new conference data, populate only the subset of `meetingCode,
# accessCode, passcode, password, pin` fields that match the terminology that
# the conference provider uses. Only the populated fields should be displayed.
# Corresponds to the JSON property `passcode`
# @return [String]
attr_accessor :passcode
# The password to access the conference. The maximum length is 128 characters.
# When creating new conference data, populate only the subset of `meetingCode,
# accessCode, passcode, password, pin` fields that match the terminology that
# the conference provider uses. Only the populated fields should be displayed.
# Optional.
# Corresponds to the JSON property `password`
# @return [String]
attr_accessor :password
# The PIN to access the conference. The maximum length is 128 characters.
# When creating new conference data, populate only the subset of `meetingCode,
# accessCode, passcode, password, pin` fields that match the terminology that
# the conference provider uses. Only the populated fields should be displayed.
# Optional.
# Corresponds to the JSON property `pin`
# @return [String]
attr_accessor :pin
# The CLDR/ISO 3166 region code for the country associated with this phone
# access. Example: "SE" for Sweden.
# Calendar backend will populate this field only for EntryPointType.PHONE.
# Corresponds to the JSON property `regionCode`
# @return [String]
attr_accessor :region_code
# The URI of the entry point. The maximum length is 1300 characters.
# Format:
# - for video, http: or https: schema is required.
# - for phone, tel: schema is required. The URI should include the entire dial
# sequence (e.g., tel:+12345678900,,,123456789;1234).
# - for sip, sip: schema is required, e.g., sip:12345678@myprovider.com.
# - for more, http: or https: schema is required.
# Corresponds to the JSON property `uri`
# @return [String]
attr_accessor :uri
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@access_code = args[:access_code] if args.key?(:access_code)
@entry_point_features = args[:entry_point_features] if args.key?(:entry_point_features)
@entry_point_type = args[:entry_point_type] if args.key?(:entry_point_type)
@label = args[:label] if args.key?(:label)
@meeting_code = args[:meeting_code] if args.key?(:meeting_code)
@passcode = args[:passcode] if args.key?(:passcode)
@password = args[:password] if args.key?(:password)
@pin = args[:pin] if args.key?(:pin)
@region_code = args[:region_code] if args.key?(:region_code)
@uri = args[:uri] if args.key?(:uri)
end
end
#
class Error
include Google::Apis::Core::Hashable
# Domain, or broad category, of the error.
# Corresponds to the JSON property `domain`
# @return [String]
attr_accessor :domain
# Specific reason for the error. Some of the possible values are:
# - "groupTooBig" - The group of users requested is too large for a single query.
#
# - "tooManyCalendarsRequested" - The number of calendars requested is too large
# for a single query.
# - "notFound" - The requested resource was not found.
# - "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 statuses not included in this list.
# Corresponds to the JSON property `reason`
# @return [String]
attr_accessor :reason
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@domain = args[:domain] if args.key?(:domain)
@reason = args[:reason] if args.key?(:reason)
end
end
#
class Event
include Google::Apis::Core::Hashable
# Whether anyone can invite themselves to the event (currently works for Google+
# events only). Optional. The default is False.
# Corresponds to the JSON property `anyoneCanAddSelf`
# @return [Boolean]
attr_accessor :anyone_can_add_self
alias_method :anyone_can_add_self?, :anyone_can_add_self
# File attachments for the event. Currently only Google Drive attachments are
# supported.
# In order to modify attachments the supportsAttachments request parameter
# should be set to true.
# There can be at most 25 attachments per event,
# Corresponds to the JSON property `attachments`
# @return [Array<Google::Apis::CalendarV3::EventAttachment>]
attr_accessor :attachments
# The attendees of the event. See the Events with attendees guide for more
# information on scheduling events with other calendar users.
# Corresponds to the JSON property `attendees`
# @return [Array<Google::Apis::CalendarV3::EventAttendee>]
attr_accessor :attendees
# 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. When updating an event, this can be used to only
# update the participant's response. Optional. The default is False.
# Corresponds to the JSON property `attendeesOmitted`
# @return [Boolean]
attr_accessor :attendees_omitted
alias_method :attendees_omitted?, :attendees_omitted
# 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.
# Corresponds to the JSON property `colorId`
# @return [String]
attr_accessor :color_id
# The conference-related information, such as details of a Hangouts Meet
# conference. To create new conference details use the createRequest field. To
# persist your changes, remember to set the conferenceDataVersion request
# parameter to 1 for all event modification requests.
# Corresponds to the JSON property `conferenceData`
# @return [Google::Apis::CalendarV3::ConferenceData]
attr_accessor :conference_data
# Creation time of the event (as a RFC3339 timestamp). Read-only.
# Corresponds to the JSON property `created`
# @return [DateTime]
attr_accessor :created
# The creator of the event. Read-only.
# Corresponds to the JSON property `creator`
# @return [Google::Apis::CalendarV3::Event::Creator]
attr_accessor :creator
# Description of the event. Optional.
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
# The (exclusive) end time of the event. For a recurring event, this is the end
# time of the first instance.
# Corresponds to the JSON property `end`
# @return [Google::Apis::CalendarV3::EventDateTime]
attr_accessor :end
# 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.
# Corresponds to the JSON property `endTimeUnspecified`
# @return [Boolean]
attr_accessor :end_time_unspecified
alias_method :end_time_unspecified?, :end_time_unspecified
# ETag of the resource.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# Extended properties of the event.
# Corresponds to the JSON property `extendedProperties`
# @return [Google::Apis::CalendarV3::Event::ExtendedProperties]
attr_accessor :extended_properties
# A gadget that extends this event.
# Corresponds to the JSON property `gadget`
# @return [Google::Apis::CalendarV3::Event::Gadget]
attr_accessor :gadget
# Whether attendees other than the organizer can invite others to the event.
# Optional. The default is True.
# Corresponds to the JSON property `guestsCanInviteOthers`
# @return [Boolean]
attr_accessor :guests_can_invite_others
alias_method :guests_can_invite_others?, :guests_can_invite_others
# Whether attendees other than the organizer can modify the event. Optional. The
# default is False.
# Corresponds to the JSON property `guestsCanModify`
# @return [Boolean]
attr_accessor :guests_can_modify
alias_method :guests_can_modify?, :guests_can_modify
# Whether attendees other than the organizer can see who the event's attendees
# are. Optional. The default is True.
# Corresponds to the JSON property `guestsCanSeeOtherGuests`
# @return [Boolean]
attr_accessor :guests_can_see_other_guests
alias_method :guests_can_see_other_guests?, :guests_can_see_other_guests
# An absolute link to the Google+ hangout associated with this event. Read-only.
# Corresponds to the JSON property `hangoutLink`
# @return [String]
attr_accessor :hangout_link
# An absolute link to this event in the Google Calendar Web UI. Read-only.
# Corresponds to the JSON property `htmlLink`
# @return [String]
attr_accessor :html_link
# 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.
# 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 occurrences of one event have different ids while
# they all share the same icalUIDs.
# Corresponds to the JSON property `iCalUID`
# @return [String]
attr_accessor :i_cal_uid
# Opaque identifier of the event. When creating new single or recurring events,
# you can specify their IDs. Provided IDs must follow these rules:
# - 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
# - the length of the ID must be between 5 and 1024 characters
# - the ID must be unique per calendar Due to the globally distributed nature
# of the system, we cannot guarantee that ID collisions will be detected at
# event creation time. To minimize the risk of collisions we recommend using an
# established UUID algorithm such as one described in RFC4122.
# If you do not specify an ID, it will be automatically generated by the server.
# 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 occurrences of one event have different ids while
# they all share the same icalUIDs.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Type of the resource ("calendar#event").
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Geographic location of the event as free-form text. Optional.
# Corresponds to the JSON property `location`
# @return [String]
attr_accessor :location
# 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. Read-Only.
# Corresponds to the JSON property `locked`
# @return [Boolean]
attr_accessor :locked
alias_method :locked?, :locked
# 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, use the move operation. Read-only, except when
# importing an event.
# Corresponds to the JSON property `organizer`
# @return [Google::Apis::CalendarV3::Event::Organizer]
attr_accessor :organizer
# 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 uniquely identifies the instance within the recurring
# event series even if the instance was moved to a different time. Immutable.
# Corresponds to the JSON property `originalStartTime`
# @return [Google::Apis::CalendarV3::EventDateTime]
attr_accessor :original_start_time
# 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.
# Corresponds to the JSON property `privateCopy`
# @return [Boolean]
attr_accessor :private_copy
alias_method :private_copy?, :private_copy
# 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 times are specified in the start and end
# fields. This field is omitted for single events or instances of recurring
# events.
# Corresponds to the JSON property `recurrence`
# @return [Array<String>]
attr_accessor :recurrence
# For an instance of a recurring event, this is the id of the recurring event to
# which this instance belongs. Immutable.
# Corresponds to the JSON property `recurringEventId`
# @return [String]
attr_accessor :recurring_event_id
# Information about the event's reminders for the authenticated user.
# Corresponds to the JSON property `reminders`
# @return [Google::Apis::CalendarV3::Event::Reminders]
attr_accessor :reminders
# Sequence number as per iCalendar.
# Corresponds to the JSON property `sequence`
# @return [Fixnum]
attr_accessor :sequence
# 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 the creator of the event.
# Corresponds to the JSON property `source`
# @return [Google::Apis::CalendarV3::Event::Source]
attr_accessor :source
# The (inclusive) start time of the event. For a recurring event, this is the
# start time of the first instance.
# Corresponds to the JSON property `start`
# @return [Google::Apis::CalendarV3::EventDateTime]
attr_accessor :start
# Status of the event. Optional. Possible values are:
# - "confirmed" - The event is confirmed. This is the default status.
# - "tentative" - The event is tentatively confirmed.
# - "cancelled" - The event is cancelled (deleted). The list method returns
# cancelled events only on incremental sync (when syncToken or updatedMin are
# specified) or if the showDeleted flag is set to true. The get method always
# returns them.
# A cancelled status represents two different states depending on the event type:
#
# - Cancelled exceptions of an uncancelled recurring event indicate that this
# instance should no longer be presented to the user. Clients should store these
# events for the lifetime of the parent recurring event.
# Cancelled exceptions are only guaranteed to have values for the id,
# recurringEventId and originalStartTime fields populated. The other fields
# might be empty.
# - All other cancelled events represent deleted events. Clients should remove
# their locally synced copies. Such cancelled events will eventually disappear,
# so do not rely on them being available indefinitely.
# Deleted events are only guaranteed to have the id field populated. On the
# organizer's calendar, cancelled events continue to expose event details (
# summary, location, etc.) so that they can be restored (undeleted). Similarly,
# the events to which the user was invited and that they manually removed
# continue to provide details. However, incremental sync requests with
# showDeleted set to false will not return these details.
# 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 id field is guaranteed to be populated.
# Corresponds to the JSON property `status`
# @return [String]
attr_accessor :status
# Title of the event.
# Corresponds to the JSON property `summary`
# @return [String]
attr_accessor :summary
# Whether the event blocks time on the calendar. Optional. Possible values are:
# - "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.
# - "transparent" - The event does not block time on the calendar. This is
# equivalent to setting Show me as to Available in the Calendar UI.
# Corresponds to the JSON property `transparency`
# @return [String]
attr_accessor :transparency
# Last modification time of the event (as a RFC3339 timestamp). Read-only.
# Corresponds to the JSON property `updated`
# @return [DateTime]
attr_accessor :updated
# Visibility of the event. Optional. Possible values are:
# - "default" - Uses the default visibility for events on the calendar. This is
# the default value.
# - "public" - The event is public and event details are visible to all readers
# of the calendar.
# - "private" - The event is private and only event attendees may view event
# details.
# - "confidential" - The event is private. This value is provided for
# compatibility reasons.
# Corresponds to the JSON property `visibility`
# @return [String]
attr_accessor :visibility
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@anyone_can_add_self = args[:anyone_can_add_self] if args.key?(:anyone_can_add_self)
@attachments = args[:attachments] if args.key?(:attachments)
@attendees = args[:attendees] if args.key?(:attendees)
@attendees_omitted = args[:attendees_omitted] if args.key?(:attendees_omitted)
@color_id = args[:color_id] if args.key?(:color_id)
@conference_data = args[:conference_data] if args.key?(:conference_data)
@created = args[:created] if args.key?(:created)
@creator = args[:creator] if args.key?(:creator)
@description = args[:description] if args.key?(:description)
@end = args[:end] if args.key?(:end)
@end_time_unspecified = args[:end_time_unspecified] if args.key?(:end_time_unspecified)
@etag = args[:etag] if args.key?(:etag)
@extended_properties = args[:extended_properties] if args.key?(:extended_properties)
@gadget = args[:gadget] if args.key?(:gadget)
@guests_can_invite_others = args[:guests_can_invite_others] if args.key?(:guests_can_invite_others)
@guests_can_modify = args[:guests_can_modify] if args.key?(:guests_can_modify)
@guests_can_see_other_guests = args[:guests_can_see_other_guests] if args.key?(:guests_can_see_other_guests)
@hangout_link = args[:hangout_link] if args.key?(:hangout_link)
@html_link = args[:html_link] if args.key?(:html_link)
@i_cal_uid = args[:i_cal_uid] if args.key?(:i_cal_uid)
@id = args[:id] if args.key?(:id)
@kind = args[:kind] if args.key?(:kind)
@location = args[:location] if args.key?(:location)
@locked = args[:locked] if args.key?(:locked)
@organizer = args[:organizer] if args.key?(:organizer)
@original_start_time = args[:original_start_time] if args.key?(:original_start_time)
@private_copy = args[:private_copy] if args.key?(:private_copy)
@recurrence = args[:recurrence] if args.key?(:recurrence)
@recurring_event_id = args[:recurring_event_id] if args.key?(:recurring_event_id)
@reminders = args[:reminders] if args.key?(:reminders)
@sequence = args[:sequence] if args.key?(:sequence)
@source = args[:source] if args.key?(:source)
@start = args[:start] if args.key?(:start)
@status = args[:status] if args.key?(:status)
@summary = args[:summary] if args.key?(:summary)
@transparency = args[:transparency] if args.key?(:transparency)
@updated = args[:updated] if args.key?(:updated)
@visibility = args[:visibility] if args.key?(:visibility)
end
# The creator of the event. Read-only.
class Creator
include Google::Apis::Core::Hashable
# The creator's name, if available.
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
# The creator's email address, if available.
# Corresponds to the JSON property `email`
# @return [String]
attr_accessor :email
# The creator's Profile ID, if available. It corresponds to the id field in the
# People collection of the Google+ API
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Whether the creator corresponds to the calendar on which this copy of the
# event appears. Read-only. The default is False.
# Corresponds to the JSON property `self`
# @return [Boolean]
attr_accessor :self
alias_method :self?, :self
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@display_name = args[:display_name] if args.key?(:display_name)
@email = args[:email] if args.key?(:email)
@id = args[:id] if args.key?(:id)
@self = args[:self] if args.key?(:self)
end
end
# Extended properties of the event.
class ExtendedProperties
include Google::Apis::Core::Hashable
# Properties that are private to the copy of the event that appears on this
# calendar.
# Corresponds to the JSON property `private`
# @return [Hash<String,String>]
attr_accessor :private
# Properties that are shared between copies of the event on other attendees'
# calendars.
# Corresponds to the JSON property `shared`
# @return [Hash<String,String>]
attr_accessor :shared
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@private = args[:private] if args.key?(:private)
@shared = args[:shared] if args.key?(:shared)
end
end
# A gadget that extends this event.
class Gadget
include Google::Apis::Core::Hashable
# The gadget's display mode. Optional. Possible values are:
# - "icon" - The gadget displays next to the event's title in the calendar view.
# - "chip" - The gadget displays when the event is clicked.
# Corresponds to the JSON property `display`
# @return [String]
attr_accessor :display_mode
# The gadget's height in pixels. The height must be an integer greater than 0.
# Optional.
# Corresponds to the JSON property `height`
# @return [Fixnum]
attr_accessor :height
# The gadget's icon URL. The URL scheme must be HTTPS.
# Corresponds to the JSON property `iconLink`
# @return [String]
attr_accessor :icon_link
# The gadget's URL. The URL scheme must be HTTPS.
# Corresponds to the JSON property `link`
# @return [String]
attr_accessor :link
# Preferences.
# Corresponds to the JSON property `preferences`
# @return [Hash<String,String>]
attr_accessor :preferences
# The gadget's title.
# Corresponds to the JSON property `title`
# @return [String]
attr_accessor :title
# The gadget's type.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type
# The gadget's width in pixels. The width must be an integer greater than 0.
# Optional.
# Corresponds to the JSON property `width`
# @return [Fixnum]
attr_accessor :width
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@display_mode = args[:display_mode] if args.key?(:display_mode)
@height = args[:height] if args.key?(:height)
@icon_link = args[:icon_link] if args.key?(:icon_link)
@link = args[:link] if args.key?(:link)
@preferences = args[:preferences] if args.key?(:preferences)
@title = args[:title] if args.key?(:title)
@type = args[:type] if args.key?(:type)
@width = args[:width] if args.key?(:width)
end
end
# 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, use the move operation. Read-only, except when
# importing an event.
class Organizer
include Google::Apis::Core::Hashable
# The organizer's name, if available.
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
# The organizer's email address, if available. It must be a valid email address
# as per RFC5322.
# Corresponds to the JSON property `email`
# @return [String]
attr_accessor :email
# The organizer's Profile ID, if available. It corresponds to the id field in
# the People collection of the Google+ API
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Whether the organizer corresponds to the calendar on which this copy of the
# event appears. Read-only. The default is False.
# Corresponds to the JSON property `self`
# @return [Boolean]
attr_accessor :self
alias_method :self?, :self
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@display_name = args[:display_name] if args.key?(:display_name)
@email = args[:email] if args.key?(:email)
@id = args[:id] if args.key?(:id)
@self = args[:self] if args.key?(:self)
end
end
# Information about the event's reminders for the authenticated user.
class Reminders
include Google::Apis::Core::Hashable
# 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 number of override reminders is 5.
# Corresponds to the JSON property `overrides`
# @return [Array<Google::Apis::CalendarV3::EventReminder>]
attr_accessor :overrides
# Whether the default reminders of the calendar apply to the event.
# Corresponds to the JSON property `useDefault`
# @return [Boolean]
attr_accessor :use_default
alias_method :use_default?, :use_default
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@overrides = args[:overrides] if args.key?(:overrides)
@use_default = args[:use_default] if args.key?(:use_default)
end
end
# 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 the creator of the event.
class Source
include Google::Apis::Core::Hashable
# Title of the source; for example a title of a web page or an email subject.
# Corresponds to the JSON property `title`
# @return [String]
attr_accessor :title
# URL of the source pointing to a resource. The URL scheme must be HTTP or HTTPS.
# Corresponds to the JSON property `url`
# @return [String]
attr_accessor :url
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@title = args[:title] if args.key?(:title)
@url = args[:url] if args.key?(:url)
end
end
end
#
class EventAttachment
include Google::Apis::Core::Hashable
# ID of the attached file. Read-only.
# For Google Drive files, this is the ID of the corresponding Files resource
# entry in the Drive API.
# Corresponds to the JSON property `fileId`
# @return [String]
attr_accessor :file_id
# URL link to the attachment.
# For adding Google Drive file attachments use the same format as in
# alternateLink property of the Files resource in the Drive API.
# Required when adding an attachment.
# Corresponds to the JSON property `fileUrl`
# @return [String]
attr_accessor :file_url
# URL link to the attachment's icon. Read-only.
# Corresponds to the JSON property `iconLink`
# @return [String]
attr_accessor :icon_link
# Internet media type (MIME type) of the attachment.
# Corresponds to the JSON property `mimeType`
# @return [String]
attr_accessor :mime_type
# Attachment title.
# Corresponds to the JSON property `title`
# @return [String]
attr_accessor :title
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@file_id = args[:file_id] if args.key?(:file_id)
@file_url = args[:file_url] if args.key?(:file_url)
@icon_link = args[:icon_link] if args.key?(:icon_link)
@mime_type = args[:mime_type] if args.key?(:mime_type)
@title = args[:title] if args.key?(:title)
end
end
#
class EventAttendee
include Google::Apis::Core::Hashable
# Number of additional guests. Optional. The default is 0.
# Corresponds to the JSON property `additionalGuests`
# @return [Fixnum]
attr_accessor :additional_guests
# The attendee's response comment. Optional.
# Corresponds to the JSON property `comment`
# @return [String]
attr_accessor :comment
# The attendee's name, if available. Optional.
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
# 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.
# Required when adding an attendee.
# Corresponds to the JSON property `email`
# @return [String]
attr_accessor :email
# The attendee's Profile ID, if available. It corresponds to the id field in the
# People collection of the Google+ API
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Whether this is an optional attendee. Optional. The default is False.
# Corresponds to the JSON property `optional`
# @return [Boolean]
attr_accessor :optional
alias_method :optional?, :optional
# Whether the attendee is the organizer of the event. Read-only. The default is
# False.
# Corresponds to the JSON property `organizer`
# @return [Boolean]
attr_accessor :organizer
alias_method :organizer?, :organizer
# 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.
# Corresponds to the JSON property `resource`
# @return [Boolean]
attr_accessor :resource
alias_method :resource?, :resource
# The attendee's response status. Possible values are:
# - "needsAction" - The attendee has not responded to the invitation.
# - "declined" - The attendee has declined the invitation.
# - "tentative" - The attendee has tentatively accepted the invitation.
# - "accepted" - The attendee has accepted the invitation.
# Corresponds to the JSON property `responseStatus`
# @return [String]
attr_accessor :response_status
# Whether this entry represents the calendar on which this copy of the event
# appears. Read-only. The default is False.
# Corresponds to the JSON property `self`
# @return [Boolean]
attr_accessor :self
alias_method :self?, :self
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@additional_guests = args[:additional_guests] if args.key?(:additional_guests)
@comment = args[:comment] if args.key?(:comment)
@display_name = args[:display_name] if args.key?(:display_name)
@email = args[:email] if args.key?(:email)
@id = args[:id] if args.key?(:id)
@optional = args[:optional] if args.key?(:optional)
@organizer = args[:organizer] if args.key?(:organizer)
@resource = args[:resource] if args.key?(:resource)
@response_status = args[:response_status] if args.key?(:response_status)
@self = args[:self] if args.key?(:self)
end
end
#
class EventDateTime
include Google::Apis::Core::Hashable
# The date, in the format "yyyy-mm-dd", if this is an all-day event.
# Corresponds to the JSON property `date`
# @return [Date]
attr_accessor :date
# 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.
# Corresponds to the JSON property `dateTime`
# @return [DateTime]
attr_accessor :date_time
# 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 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.
# Corresponds to the JSON property `timeZone`
# @return [String]
attr_accessor :time_zone
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@date = args[:date] if args.key?(:date)
@date_time = args[:date_time] if args.key?(:date_time)
@time_zone = args[:time_zone] if args.key?(:time_zone)
end
end
#
class EventReminder
include Google::Apis::Core::Hashable
# The method used by this reminder. Possible values are:
# - "email" - Reminders are sent via email.
# - "sms" - Deprecated. Once this feature is shutdown, the API will no longer
# return reminders using this method. Any newly added SMS reminders will be
# ignored. See Google Calendar SMS notifications to be removed for more
# information.
# Reminders are sent via SMS. These are only available for G Suite customers.
# Requests to set SMS reminders for other account types are ignored.
# - "popup" - Reminders are sent via a UI popup.
# Required when adding a reminder.
# Corresponds to the JSON property `method`
# @return [String]
attr_accessor :reminder_method
# 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).
# Required when adding a reminder.
# Corresponds to the JSON property `minutes`
# @return [Fixnum]
attr_accessor :minutes
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@reminder_method = args[:reminder_method] if args.key?(:reminder_method)
@minutes = args[:minutes] if args.key?(:minutes)
end
end
#
class Events
include Google::Apis::Core::Hashable
# The user's access role for this calendar. Read-only. Possible values are:
# - "none" - The user has no access.
# - "freeBusyReader" - The user has read access to free/busy information.
# - "reader" - The user has read access to the calendar. Private events will
# appear to users with reader access, but event details will be hidden.
# - "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.
# - "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.
# Corresponds to the JSON property `accessRole`
# @return [String]
attr_accessor :access_role
# 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 reminders.useDefault set to True).
# Corresponds to the JSON property `defaultReminders`
# @return [Array<Google::Apis::CalendarV3::EventReminder>]
attr_accessor :default_reminders
# Description of the calendar. Read-only.
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
# ETag of the collection.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# List of events on the calendar.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::CalendarV3::Event>]
attr_accessor :items
# Type of the collection ("calendar#events").
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Token used to access the next page of this result. Omitted if no further
# results are available, in which case nextSyncToken is provided.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
# 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 nextPageToken is provided.
# Corresponds to the JSON property `nextSyncToken`
# @return [String]
attr_accessor :next_sync_token
# Title of the calendar. Read-only.
# Corresponds to the JSON property `summary`
# @return [String]
attr_accessor :summary
# The time zone of the calendar. Read-only.
# Corresponds to the JSON property `timeZone`
# @return [String]
attr_accessor :time_zone
# Last modification time of the calendar (as a RFC3339 timestamp). Read-only.
# Corresponds to the JSON property `updated`
# @return [DateTime]
attr_accessor :updated
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@access_role = args[:access_role] if args.key?(:access_role)
@default_reminders = args[:default_reminders] if args.key?(:default_reminders)
@description = args[:description] if args.key?(:description)
@etag = args[:etag] if args.key?(:etag)
@items = args[:items] if args.key?(:items)
@kind = args[:kind] if args.key?(:kind)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
@next_sync_token = args[:next_sync_token] if args.key?(:next_sync_token)
@summary = args[:summary] if args.key?(:summary)
@time_zone = args[:time_zone] if args.key?(:time_zone)
@updated = args[:updated] if args.key?(:updated)
end
end
#
class FreeBusyCalendar
include Google::Apis::Core::Hashable
# List of time ranges during which this calendar should be regarded as busy.
# Corresponds to the JSON property `busy`
# @return [Array<Google::Apis::CalendarV3::TimePeriod>]
attr_accessor :busy
# Optional error(s) (if computation for the calendar failed).
# Corresponds to the JSON property `errors`
# @return [Array<Google::Apis::CalendarV3::Error>]
attr_accessor :errors
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@busy = args[:busy] if args.key?(:busy)
@errors = args[:errors] if args.key?(:errors)
end
end
#
class FreeBusyGroup
include Google::Apis::Core::Hashable
# List of calendars' identifiers within a group.
# Corresponds to the JSON property `calendars`
# @return [Array<String>]
attr_accessor :calendars
# Optional error(s) (if computation for the group failed).
# Corresponds to the JSON property `errors`
# @return [Array<Google::Apis::CalendarV3::Error>]
attr_accessor :errors
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@calendars = args[:calendars] if args.key?(:calendars)
@errors = args[:errors] if args.key?(:errors)
end
end
#
class FreeBusyRequest
include Google::Apis::Core::Hashable
# Maximal number of calendars for which FreeBusy information is to be provided.
# Optional. Maximum value is 50.
# Corresponds to the JSON property `calendarExpansionMax`
# @return [Fixnum]
attr_accessor :calendar_expansion_max
# 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.
# Corresponds to the JSON property `groupExpansionMax`
# @return [Fixnum]
attr_accessor :group_expansion_max
# List of calendars and/or groups to query.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::CalendarV3::FreeBusyRequestItem>]
attr_accessor :items
# The end of the interval for the query formatted as per RFC3339.
# Corresponds to the JSON property `timeMax`
# @return [DateTime]
attr_accessor :time_max
# The start of the interval for the query formatted as per RFC3339.
# Corresponds to the JSON property `timeMin`
# @return [DateTime]
attr_accessor :time_min
# Time zone used in the response. Optional. The default is UTC.
# Corresponds to the JSON property `timeZone`
# @return [String]
attr_accessor :time_zone
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@calendar_expansion_max = args[:calendar_expansion_max] if args.key?(:calendar_expansion_max)
@group_expansion_max = args[:group_expansion_max] if args.key?(:group_expansion_max)
@items = args[:items] if args.key?(:items)
@time_max = args[:time_max] if args.key?(:time_max)
@time_min = args[:time_min] if args.key?(:time_min)
@time_zone = args[:time_zone] if args.key?(:time_zone)
end
end
#
class FreeBusyRequestItem
include Google::Apis::Core::Hashable
# The identifier of a calendar or a group.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@id = args[:id] if args.key?(:id)
end
end
#
class FreeBusyResponse
include Google::Apis::Core::Hashable
# List of free/busy information for calendars.
# Corresponds to the JSON property `calendars`
# @return [Hash<String,Google::Apis::CalendarV3::FreeBusyCalendar>]
attr_accessor :calendars
# Expansion of groups.
# Corresponds to the JSON property `groups`
# @return [Hash<String,Google::Apis::CalendarV3::FreeBusyGroup>]
attr_accessor :groups
# Type of the resource ("calendar#freeBusy").
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# The end of the interval.
# Corresponds to the JSON property `timeMax`
# @return [DateTime]
attr_accessor :time_max
# The start of the interval.
# Corresponds to the JSON property `timeMin`
# @return [DateTime]
attr_accessor :time_min
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@calendars = args[:calendars] if args.key?(:calendars)
@groups = args[:groups] if args.key?(:groups)
@kind = args[:kind] if args.key?(:kind)
@time_max = args[:time_max] if args.key?(:time_max)
@time_min = args[:time_min] if args.key?(:time_min)
end
end
#
class Setting
include Google::Apis::Core::Hashable
# ETag of the resource.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# The id of the user setting.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Type of the resource ("calendar#setting").
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# 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.
# Corresponds to the JSON property `value`
# @return [String]
attr_accessor :value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@etag = args[:etag] if args.key?(:etag)
@id = args[:id] if args.key?(:id)
@kind = args[:kind] if args.key?(:kind)
@value = args[:value] if args.key?(:value)
end
end
#
class Settings
include Google::Apis::Core::Hashable
# Etag of the collection.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# List of user settings.
# Corresponds to the JSON property `items`
# @return [Array<Google::Apis::CalendarV3::Setting>]
attr_accessor :items
# Type of the collection ("calendar#settings").
# Corresponds to the JSON property `kind`
# @return [String]
attr_accessor :kind
# Token used to access the next page of this result. Omitted if no further
# results are available, in which case nextSyncToken is provided.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
# 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 nextPageToken is provided.
# Corresponds to the JSON property `nextSyncToken`
# @return [String]
attr_accessor :next_sync_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@etag = args[:etag] if args.key?(:etag)
@items = args[:items] if args.key?(:items)
@kind = args[:kind] if args.key?(:kind)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
@next_sync_token = args[:next_sync_token] if args.key?(:next_sync_token)
end
end
#
class TimePeriod
include Google::Apis::Core::Hashable
# The (exclusive) end of the time period.
# Corresponds to the JSON property `end`
# @return [DateTime]
attr_accessor :end
# The (inclusive) start of the time period.
# Corresponds to the JSON property `start`
# @return [DateTime]
attr_accessor :start
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@end = args[:end] if args.key?(:end)
@start = args[:start] if args.key?(:start)
end
end
end
end
end
|