v1.d.ts
106 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
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
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
/// <reference types="node" />
import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosPromise, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common';
import { Readable } from 'stream';
export declare namespace mybusinesslodging_v1 {
export interface Options extends GlobalOptions {
version: 'v1';
}
interface StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient | BaseExternalAccountClient | GoogleAuth;
/**
* V1 error format.
*/
'$.xgafv'?: string;
/**
* OAuth access token.
*/
access_token?: string;
/**
* Data format for response.
*/
alt?: string;
/**
* JSONP
*/
callback?: string;
/**
* Selector specifying which fields to include in a partial response.
*/
fields?: string;
/**
* API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
*/
key?: string;
/**
* OAuth 2.0 token for the current user.
*/
oauth_token?: string;
/**
* Returns response with indentations and line breaks.
*/
prettyPrint?: boolean;
/**
* Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
*/
quotaUser?: string;
/**
* Legacy upload protocol for media (e.g. "media", "multipart").
*/
uploadType?: string;
/**
* Upload protocol for media (e.g. "raw", "multipart").
*/
upload_protocol?: string;
}
/**
* My Business Lodging API
*
* The My Business Lodging API enables managing lodging business information on Google.
*
* @example
* ```js
* const {google} = require('googleapis');
* const mybusinesslodging = google.mybusinesslodging('v1');
* ```
*/
export class Mybusinesslodging {
context: APIRequestContext;
locations: Resource$Locations;
constructor(options: GlobalOptions, google?: GoogleConfigurable);
}
/**
* Physical adaptations made to the property in consideration of varying levels of human physical ability.
*/
export interface Schema$Accessibility {
/**
* Mobility accessible. Throughout the property there are physical adaptations to ease the stay of a person in a wheelchair, such as auto-opening doors, wide elevators, wide bathrooms or ramps.
*/
mobilityAccessible?: boolean | null;
/**
* Mobility accessible elevator. A lift that transports people from one level to another and is built to accommodate a wheelchair-using passenger owing to the width of its doors and placement of call buttons.
*/
mobilityAccessibleElevator?: boolean | null;
/**
* Mobility accessible elevator exception.
*/
mobilityAccessibleElevatorException?: string | null;
/**
* Mobility accessible exception.
*/
mobilityAccessibleException?: string | null;
/**
* Mobility accessible parking. The presence of a marked, designated area of prescribed size in which only registered, labeled vehicles transporting a person with physical challenges may park.
*/
mobilityAccessibleParking?: boolean | null;
/**
* Mobility accessible parking exception.
*/
mobilityAccessibleParkingException?: string | null;
/**
* Mobility accessible pool. A swimming pool equipped with a mechanical chair that can be lowered and raised for the purpose of moving physically challenged guests into and out of the pool. May be powered by electricity or water. Also known as pool lift.
*/
mobilityAccessiblePool?: boolean | null;
/**
* Mobility accessible pool exception.
*/
mobilityAccessiblePoolException?: string | null;
}
/**
* Amenities and features related to leisure and play.
*/
export interface Schema$Activities {
/**
* Beach access. The hotel property is in close proximity to a beach and offers a way to get to that beach. This can include a route to the beach such as stairs down if hotel is on a bluff, or a short trail. Not the same as beachfront (with beach access, the hotel's proximity is close to but not right on the beach).
*/
beachAccess?: boolean | null;
/**
* Beach access exception.
*/
beachAccessException?: string | null;
/**
* Breach front. The hotel property is physically located on the beach alongside an ocean, sea, gulf, or bay. It is not on a lake, river, stream, or pond. The hotel is not separated from the beach by a public road allowing vehicular, pedestrian, or bicycle traffic.
*/
beachFront?: boolean | null;
/**
* Beach front exception.
*/
beachFrontException?: string | null;
/**
* Bicycle rental. The hotel owns bicycles that it permits guests to borrow and use. Can be free or for a fee.
*/
bicycleRental?: boolean | null;
/**
* Bicycle rental exception.
*/
bicycleRentalException?: string | null;
/**
* Boutique stores. There are stores selling clothing, jewelry, art and decor either on hotel premises or very close by. Does not refer to the hotel gift shop or convenience store.
*/
boutiqueStores?: boolean | null;
/**
* Boutique stores exception.
*/
boutiqueStoresException?: string | null;
/**
* Casino. A space designated for gambling and gaming featuring croupier-run table and card games, as well as electronic slot machines. May be on hotel premises or located nearby.
*/
casino?: boolean | null;
/**
* Casino exception.
*/
casinoException?: string | null;
/**
* Free bicycle rental. The hotel owns bicycles that it permits guests to borrow and use for free.
*/
freeBicycleRental?: boolean | null;
/**
* Free bicycle rental exception.
*/
freeBicycleRentalException?: string | null;
/**
* Free watercraft rental. The hotel owns watercraft that it permits guests to borrow and use for free.
*/
freeWatercraftRental?: boolean | null;
/**
* Free Watercraft rental exception.
*/
freeWatercraftRentalException?: string | null;
/**
* Game room. There is a room at the hotel containing electronic machines for play such as pinball, prize machines, driving simulators, and other items commonly found at a family fun center or arcade. May also include non-electronic games like pool, foosball, darts, and more. May or may not be designed for children. Also known as arcade, fun room, or family fun center.
*/
gameRoom?: boolean | null;
/**
* Game room exception.
*/
gameRoomException?: string | null;
/**
* Golf. There is a golf course on hotel grounds or there is a nearby, independently run golf course that allows use by hotel guests. Can be free or for a fee.
*/
golf?: boolean | null;
/**
* Golf exception.
*/
golfException?: string | null;
/**
* Horseback riding. The hotel has a horse barn onsite or an affiliation with a nearby barn to allow for guests to sit astride a horse and direct it to walk, trot, cantor, gallop and/or jump. Can be in a riding ring, on designated paths, or in the wilderness. May or may not involve instruction.
*/
horsebackRiding?: boolean | null;
/**
* Horseback riding exception.
*/
horsebackRidingException?: string | null;
/**
* Nightclub. There is a room at the hotel with a bar, a dance floor, and seating where designated staffers play dance music. There may also be a designated area for the performance of live music, singing and comedy acts.
*/
nightclub?: boolean | null;
/**
* Nightclub exception.
*/
nightclubException?: string | null;
/**
* Private beach. The beach which is in close proximity to the hotel is open only to guests.
*/
privateBeach?: boolean | null;
/**
* Private beach exception.
*/
privateBeachException?: string | null;
/**
* Scuba. The provision for guests to dive under naturally occurring water fitted with a self-contained underwater breathing apparatus (SCUBA) for the purpose of exploring underwater life. Apparatus consists of a tank providing oxygen to the diver through a mask. Requires certification of the diver and supervision. The hotel may have the activity at its own waterfront or have an affiliation with a nearby facility. Required equipment is most often supplied to guests. Can be free or for a fee. Not snorkeling. Not done in a swimming pool.
*/
scuba?: boolean | null;
/**
* Scuba exception.
*/
scubaException?: string | null;
/**
* Snorkeling. The provision for guests to participate in a recreational water activity in which swimmers wear a diving mask, a simple, shaped breathing tube and flippers/swim fins for the purpose of exploring below the surface of an ocean, gulf or lake. Does not usually require user certification or professional supervision. Equipment may or may not be available for rent or purchase. Not scuba diving.
*/
snorkeling?: boolean | null;
/**
* Snorkeling exception.
*/
snorkelingException?: string | null;
/**
* Tennis. The hotel has the requisite court(s) on site or has an affiliation with a nearby facility for the purpose of providing guests with the opportunity to play a two-sided court-based game in which players use a stringed racquet to hit a ball across a net to the side of the opposing player. The court can be indoors or outdoors. Instructors, racquets and balls may or may not be provided.
*/
tennis?: boolean | null;
/**
* Tennis exception.
*/
tennisException?: string | null;
/**
* Watercraft rental. The hotel owns water vessels that it permits guests to borrow and use. Can be free or for a fee. Watercraft may include boats, pedal boats, rowboats, sailboats, powerboats, canoes, kayaks, or personal watercraft (such as a Jet Ski).
*/
watercraftRental?: boolean | null;
/**
* Watercraft rental exception.
*/
watercraftRentalException?: string | null;
/**
* Water skiing. The provision of giving guests the opportunity to be pulled across naturally occurring water while standing on skis and holding a tow rope attached to a motorboat. Can occur on hotel premises or at a nearby waterfront. Most often performed in a lake or ocean.
*/
waterSkiing?: boolean | null;
/**
* Water skiing exception.
*/
waterSkiingException?: string | null;
}
/**
* Features of the property of specific interest to the business traveler.
*/
export interface Schema$Business {
/**
* Business center. A designated room at the hotel with one or more desks and equipped with guest-use computers, printers, fax machines and/or photocopiers. May or may not be open 24/7. May or may not require a key to access. Not a meeting room or conference room.
*/
businessCenter?: boolean | null;
/**
* Business center exception.
*/
businessCenterException?: string | null;
/**
* Meeting rooms. Rooms at the hotel designated for business-related gatherings. Rooms are usually equipped with tables or desks, office chairs and audio/visual facilities to allow for presentations and conference calls. Also known as conference rooms.
*/
meetingRooms?: boolean | null;
/**
* Meeting rooms count. The number of meeting rooms at the property.
*/
meetingRoomsCount?: number | null;
/**
* Meeting rooms count exception.
*/
meetingRoomsCountException?: string | null;
/**
* Meeting rooms exception.
*/
meetingRoomsException?: string | null;
}
/**
* The ways in which the property provides guests with the ability to access the internet.
*/
export interface Schema$Connectivity {
/**
* Free wifi. The hotel offers guests wifi for free.
*/
freeWifi?: boolean | null;
/**
* Free wifi exception.
*/
freeWifiException?: string | null;
/**
* Public area wifi available. Guests have the ability to wirelessly connect to the internet in the areas of the hotel accessible to anyone. Can be free or for a fee.
*/
publicAreaWifiAvailable?: boolean | null;
/**
* Public area wifi available exception.
*/
publicAreaWifiAvailableException?: string | null;
/**
* Public internet terminal. An area of the hotel supplied with computers and designated for the purpose of providing guests with the ability to access the internet.
*/
publicInternetTerminal?: boolean | null;
/**
* Public internet terminal exception.
*/
publicInternetTerminalException?: string | null;
/**
* Wifi available. The hotel provides the ability for guests to wirelessly connect to the internet. Can be in the public areas of the hotel and/or in the guest rooms. Can be free or for a fee.
*/
wifiAvailable?: boolean | null;
/**
* Wifi available exception.
*/
wifiAvailableException?: string | null;
}
/**
* Enhanced cleaning measures implemented by the hotel during COVID-19.
*/
export interface Schema$EnhancedCleaning {
/**
* Commercial-grade disinfectant used to clean the property.
*/
commercialGradeDisinfectantCleaning?: boolean | null;
/**
* Commercial grade disinfectant cleaning exception.
*/
commercialGradeDisinfectantCleaningException?: string | null;
/**
* Enhanced cleaning of common areas.
*/
commonAreasEnhancedCleaning?: boolean | null;
/**
* Common areas enhanced cleaning exception.
*/
commonAreasEnhancedCleaningException?: string | null;
/**
* Employees trained in COVID-19 cleaning procedures.
*/
employeesTrainedCleaningProcedures?: boolean | null;
/**
* Employees trained cleaning procedures exception.
*/
employeesTrainedCleaningProceduresException?: string | null;
/**
* Employees trained in thorough hand-washing.
*/
employeesTrainedThoroughHandWashing?: boolean | null;
/**
* Employees trained thorough hand washing exception.
*/
employeesTrainedThoroughHandWashingException?: string | null;
/**
* Employees wear masks, face shields, and/or gloves.
*/
employeesWearProtectiveEquipment?: boolean | null;
/**
* Employees wear protective equipment exception.
*/
employeesWearProtectiveEquipmentException?: string | null;
/**
* Enhanced cleaning of guest rooms.
*/
guestRoomsEnhancedCleaning?: boolean | null;
/**
* Guest rooms enhanced cleaning exception.
*/
guestRoomsEnhancedCleaningException?: string | null;
}
/**
* Services and amenities for families and young guests.
*/
export interface Schema$Families {
/**
* Babysitting. Child care that is offered by hotel staffers or coordinated by hotel staffers with local child care professionals. Can be free or for a fee.
*/
babysitting?: boolean | null;
/**
* Babysitting exception.
*/
babysittingException?: string | null;
/**
* Kids activities. Recreational options such as sports, films, crafts and games designed for the enjoyment of children and offered at the hotel. May or may not be supervised. May or may not be at a designated time or place. Cab be free or for a fee.
*/
kidsActivities?: boolean | null;
/**
* Kids activities exception.
*/
kidsActivitiesException?: string | null;
/**
* Kids club. An organized program of group activities held at the hotel and designed for the enjoyment of children. Facilitated by hotel staff (or staff procured by the hotel) in an area(s) designated for the purpose of entertaining children without their parents. May include games, outings, water sports, team sports, arts and crafts, and films. Usually has set hours. Can be free or for a fee. Also known as Kids Camp or Kids program.
*/
kidsClub?: boolean | null;
/**
* Kids club exception.
*/
kidsClubException?: string | null;
}
/**
* Meals, snacks, and beverages available at the property.
*/
export interface Schema$FoodAndDrink {
/**
* Bar. A designated room, lounge or area of an on-site restaurant with seating at a counter behind which a hotel staffer takes the guest's order and provides the requested alcoholic drink. Can be indoors or outdoors. Also known as Pub.
*/
bar?: boolean | null;
/**
* Bar exception.
*/
barException?: string | null;
/**
* Breakfast available. The morning meal is offered to all guests. Can be free or for a fee.
*/
breakfastAvailable?: boolean | null;
/**
* Breakfast available exception.
*/
breakfastAvailableException?: string | null;
/**
* Breakfast buffet. Breakfast meal service where guests serve themselves from a variety of dishes/foods that are put out on a table.
*/
breakfastBuffet?: boolean | null;
/**
* Breakfast buffet exception.
*/
breakfastBuffetException?: string | null;
/**
* Buffet. A type of meal where guests serve themselves from a variety of dishes/foods that are put out on a table. Includes lunch and/or dinner meals. A breakfast-only buffet is not sufficient.
*/
buffet?: boolean | null;
/**
* Buffet exception.
*/
buffetException?: string | null;
/**
* Dinner buffet. Dinner meal service where guests serve themselves from a variety of dishes/foods that are put out on a table.
*/
dinnerBuffet?: boolean | null;
/**
* Dinner buffet exception.
*/
dinnerBuffetException?: string | null;
/**
* Free breakfast. Breakfast is offered for free to all guests. Does not apply if limited to certain room packages.
*/
freeBreakfast?: boolean | null;
/**
* Free breakfast exception.
*/
freeBreakfastException?: string | null;
/**
* Restaurant. A business onsite at the hotel that is open to the public as well as guests, and offers meals and beverages to consume at tables or counters. May or may not include table service. Also known as cafe, buffet, eatery. A "breakfast room" where the hotel serves breakfast only to guests (not the general public) does not count as a restaurant.
*/
restaurant?: boolean | null;
/**
* Restaurant exception.
*/
restaurantException?: string | null;
/**
* Restaurants count. The number of restaurants at the hotel.
*/
restaurantsCount?: number | null;
/**
* Restaurants count exception.
*/
restaurantsCountException?: string | null;
/**
* Room service. A hotel staffer delivers meals prepared onsite to a guest's room as per their request. May or may not be available during specific hours. Services should be available to all guests (not based on rate/room booked/reward program, etc).
*/
roomService?: boolean | null;
/**
* Room service exception.
*/
roomServiceException?: string | null;
/**
* Table service. A restaurant in which a staff member is assigned to a guest's table to take their order, deliver and clear away food, and deliver the bill, if applicable. Also known as sit-down restaurant.
*/
tableService?: boolean | null;
/**
* Table service exception.
*/
tableServiceException?: string | null;
/**
* 24hr room service. Room service is available 24 hours a day.
*/
twentyFourHourRoomService?: boolean | null;
/**
* 24hr room service exception.
*/
twentyFourHourRoomServiceException?: string | null;
/**
* Vending machine. A glass-fronted mechanized cabinet displaying and dispensing snacks and beverages for purchase by coins, paper money and/or credit cards.
*/
vendingMachine?: boolean | null;
/**
* Vending machine exception.
*/
vendingMachineException?: string | null;
}
/**
* Response message for LodgingService.GetGoogleUpdatedLodging
*/
export interface Schema$GetGoogleUpdatedLodgingResponse {
/**
* Required. The fields in the Lodging that have been updated by Google. Repeated field items are not individually specified.
*/
diffMask?: string | null;
/**
* Required. The Google updated Lodging.
*/
lodging?: Schema$Lodging;
}
/**
* Features and available amenities in the guest unit.
*/
export interface Schema$GuestUnitFeatures {
/**
* Bungalow or villa. An independent structure that is part of a hotel or resort that is rented to one party for a vacation stay. The hotel or resort may be completely comprised of bungalows or villas, or they may be one of several guestroom options. Guests in the bungalows or villas most often have the same, if not more, amenities and services offered to guests in other guestroom types.
*/
bungalowOrVilla?: boolean | null;
/**
* Bungalow or villa exception.
*/
bungalowOrVillaException?: string | null;
/**
* Connecting unit available. A guestroom type that features access to an adjacent guestroom for the purpose of booking both rooms. Most often used by families who need more than one room to accommodate the number of people in their group.
*/
connectingUnitAvailable?: boolean | null;
/**
* Connecting unit available exception.
*/
connectingUnitAvailableException?: string | null;
/**
* Executive floor. A floor of the hotel where the guestrooms are only bookable by members of the hotel's frequent guest membership program. Benefits of this room class include access to a designated lounge which may or may not feature free breakfast, cocktails or other perks specific to members of the program.
*/
executiveFloor?: boolean | null;
/**
* Executive floor exception.
*/
executiveFloorException?: string | null;
/**
* Max adult occupants count. The total number of adult guests allowed to stay overnight in the guestroom.
*/
maxAdultOccupantsCount?: number | null;
/**
* Max adult occupants count exception.
*/
maxAdultOccupantsCountException?: string | null;
/**
* Max child occupants count. The total number of children allowed to stay overnight in the room.
*/
maxChildOccupantsCount?: number | null;
/**
* Max child occupants count exception.
*/
maxChildOccupantsCountException?: string | null;
/**
* Max occupants count. The total number of guests allowed to stay overnight in the guestroom.
*/
maxOccupantsCount?: number | null;
/**
* Max occupants count exception.
*/
maxOccupantsCountException?: string | null;
/**
* Private home. A privately owned home (house, townhouse, apartment, cabin, bungalow etc) that may or not serve as the owner's residence, but is rented out in its entirety or by the room(s) to paying guest(s) for vacation stays. Not for lease-based, long-term residency.
*/
privateHome?: boolean | null;
/**
* Private home exception.
*/
privateHomeException?: string | null;
/**
* Suite. A guestroom category that implies both a bedroom area and a separate living area. There may or may not be full walls and doors separating the two areas, but regardless, they are very distinct. Does not mean a couch or chair in a bedroom.
*/
suite?: boolean | null;
/**
* Suite exception.
*/
suiteException?: string | null;
/**
* Tier. Classification of the unit based on available features/amenities. A non-standard tier is only permitted if at least one other unit type falls under the standard tier.
*/
tier?: string | null;
/**
* Tier exception.
*/
tierException?: string | null;
/**
* Features available in the living areas in the guest unit.
*/
totalLivingAreas?: Schema$LivingArea;
/**
* Views available from the guest unit itself.
*/
views?: Schema$ViewsFromUnit;
}
/**
* A specific type of unit primarily defined by its features.
*/
export interface Schema$GuestUnitType {
/**
* Required. Unit or room code identifiers for a single GuestUnitType. Each code must be unique within a Lodging instance.
*/
codes?: string[] | null;
/**
* Features and available amenities of the GuestUnitType.
*/
features?: Schema$GuestUnitFeatures;
/**
* Required. Short, English label or name of the GuestUnitType. Target <50 chars.
*/
label?: string | null;
}
/**
* Health and safety measures implemented by the hotel during COVID-19.
*/
export interface Schema$HealthAndSafety {
/**
* Enhanced cleaning measures implemented by the hotel during COVID-19.
*/
enhancedCleaning?: Schema$EnhancedCleaning;
/**
* Increased food safety measures implemented by the hotel during COVID-19.
*/
increasedFoodSafety?: Schema$IncreasedFoodSafety;
/**
* Minimized contact measures implemented by the hotel during COVID-19.
*/
minimizedContact?: Schema$MinimizedContact;
/**
* Personal protection measures implemented by the hotel during COVID-19.
*/
personalProtection?: Schema$PersonalProtection;
/**
* Physical distancing measures implemented by the hotel during COVID-19.
*/
physicalDistancing?: Schema$PhysicalDistancing;
}
/**
* Conveniences provided in guest units to facilitate an easier, more comfortable stay.
*/
export interface Schema$Housekeeping {
/**
* Daily housekeeping. Guest units are cleaned by hotel staff daily during guest's stay.
*/
dailyHousekeeping?: boolean | null;
/**
* Daily housekeeping exception.
*/
dailyHousekeepingException?: string | null;
/**
* Housekeeping available. Guest units are cleaned by hotel staff during guest's stay. Schedule may vary from daily, weekly, or specific days of the week.
*/
housekeepingAvailable?: boolean | null;
/**
* Housekeeping available exception.
*/
housekeepingAvailableException?: string | null;
/**
* Turndown service. Hotel staff enters guest units to prepare the bed for sleep use. May or may not include some light housekeeping. May or may not include an evening snack or candy. Also known as evening service.
*/
turndownService?: boolean | null;
/**
* Turndown service exception.
*/
turndownServiceException?: string | null;
}
/**
* Increased food safety measures implemented by the hotel during COVID-19.
*/
export interface Schema$IncreasedFoodSafety {
/**
* Additional sanitation in dining areas.
*/
diningAreasAdditionalSanitation?: boolean | null;
/**
* Dining areas additional sanitation exception.
*/
diningAreasAdditionalSanitationException?: string | null;
/**
* Disposable flatware.
*/
disposableFlatware?: boolean | null;
/**
* Disposable flatware exception.
*/
disposableFlatwareException?: string | null;
/**
* Additional safety measures during food prep and serving.
*/
foodPreparationAndServingAdditionalSafety?: boolean | null;
/**
* Food preparation and serving additional safety exception.
*/
foodPreparationAndServingAdditionalSafetyException?: string | null;
/**
* Individually-packaged meals.
*/
individualPackagedMeals?: boolean | null;
/**
* Individual packaged meals exception.
*/
individualPackagedMealsException?: string | null;
/**
* Single-use menus.
*/
singleUseFoodMenus?: boolean | null;
/**
* Single use food menus exception.
*/
singleUseFoodMenusException?: string | null;
}
/**
* Language spoken by at least one staff member.
*/
export interface Schema$LanguageSpoken {
/**
* Required. The BCP-47 language code for the spoken language. Currently accepted codes: ar, de, en, es, fil, fr, hi, id, it, ja, ko, nl, pt, ru, vi, yue, zh.
*/
languageCode?: string | null;
/**
* At least one member of the staff can speak the language.
*/
spoken?: boolean | null;
/**
* Spoken exception.
*/
spokenException?: string | null;
}
/**
* An individual room, such as kitchen, bathroom, bedroom, within a bookable guest unit.
*/
export interface Schema$LivingArea {
/**
* Accessibility features of the living area.
*/
accessibility?: Schema$LivingAreaAccessibility;
/**
* Information about eating features in the living area.
*/
eating?: Schema$LivingAreaEating;
/**
* Features in the living area.
*/
features?: Schema$LivingAreaFeatures;
/**
* Information about the layout of the living area.
*/
layout?: Schema$LivingAreaLayout;
/**
* Information about sleeping features in the living area.
*/
sleeping?: Schema$LivingAreaSleeping;
}
/**
* Accessibility features of the living area.
*/
export interface Schema$LivingAreaAccessibility {
/**
* ADA compliant unit. A guestroom designed to accommodate the physical challenges of a guest with mobility and/or auditory and/or visual issues, as determined by legislative policy. Usually features enlarged doorways, roll-in showers with seats, bathroom grab bars, and communication equipment for the hearing and sight challenged.
*/
adaCompliantUnit?: boolean | null;
/**
* ADA compliant unit exception.
*/
adaCompliantUnitException?: string | null;
/**
* Hearing-accessible doorbell. A visual indicator(s) of a knock or ring at the door.
*/
hearingAccessibleDoorbell?: boolean | null;
/**
* Hearing-accessible doorbell exception.
*/
hearingAccessibleDoorbellException?: string | null;
/**
* Hearing-accessible fire alarm. A device that gives warning of a fire through flashing lights.
*/
hearingAccessibleFireAlarm?: boolean | null;
/**
* Hearing-accessible fire alarm exception.
*/
hearingAccessibleFireAlarmException?: string | null;
/**
* Hearing-accessible unit. A guestroom designed to accommodate the physical challenges of a guest with auditory issues.
*/
hearingAccessibleUnit?: boolean | null;
/**
* Hearing-accessible unit exception.
*/
hearingAccessibleUnitException?: string | null;
/**
* Mobility-accessible bathtub. A bathtub that accomodates the physically challenged with additional railings or hand grips, a transfer seat or lift, and/or a door to enable walking into the tub.
*/
mobilityAccessibleBathtub?: boolean | null;
/**
* Mobility-accessible bathtub exception.
*/
mobilityAccessibleBathtubException?: string | null;
/**
* Mobility-accessible shower. A shower with an enlarged door or access point to accommodate a wheelchair or a waterproof seat for the physically challenged.
*/
mobilityAccessibleShower?: boolean | null;
/**
* Mobility-accessible shower exception.
*/
mobilityAccessibleShowerException?: string | null;
/**
* Mobility-accessible toilet. A toilet with a higher seat, grab bars, and/or a larger area around it to accommodate the physically challenged.
*/
mobilityAccessibleToilet?: boolean | null;
/**
* Mobility-accessible toilet exception.
*/
mobilityAccessibleToiletException?: string | null;
/**
* Mobility-accessible unit. A guestroom designed to accommodate the physical challenges of a guest with mobility and/or auditory and/or visual issues. Usually features enlarged doorways, roll-in showers with seats, bathroom grab bars, and communication equipment for the hearing and sight challenged.
*/
mobilityAccessibleUnit?: boolean | null;
/**
* Mobility-accessible unit exception.
*/
mobilityAccessibleUnitException?: string | null;
}
/**
* Information about eating features in the living area.
*/
export interface Schema$LivingAreaEating {
/**
* Coffee maker. An electric appliance that brews coffee by heating and forcing water through ground coffee.
*/
coffeeMaker?: boolean | null;
/**
* Coffee maker exception.
*/
coffeeMakerException?: string | null;
/**
* Cookware. Kitchen pots, pans and utensils used in connection with the preparation of food.
*/
cookware?: boolean | null;
/**
* Cookware exception.
*/
cookwareException?: string | null;
/**
* Dishwasher. A counter-height electrical cabinet containing racks for dirty dishware, cookware and cutlery, and a dispenser for soap built into the pull-down door. The cabinet is attached to the plumbing system to facilitate the automatic cleaning of its contents.
*/
dishwasher?: boolean | null;
/**
* Dishwasher exception.
*/
dishwasherException?: string | null;
/**
* Indoor grill. Metal grates built into an indoor cooktop on which food is cooked over an open flame or electric heat source.
*/
indoorGrill?: boolean | null;
/**
* Indoor grill exception.
*/
indoorGrillException?: string | null;
/**
* Kettle. A covered container with a handle and a spout used for boiling water.
*/
kettle?: boolean | null;
/**
* Kettle exception.
*/
kettleException?: string | null;
/**
* Kitchen available. An area of the guestroom designated for the preparation and storage of food via the presence of a refrigerator, cook top, oven and sink, as well as cutlery, dishes and cookware. Usually includes small appliances such a coffee maker and a microwave. May or may not include an automatic dishwasher.
*/
kitchenAvailable?: boolean | null;
/**
* Kitchen available exception.
*/
kitchenAvailableException?: string | null;
/**
* Microwave. An electric oven that quickly cooks and heats food by microwave energy. Smaller than a standing or wall mounted oven. Usually placed on a kitchen counter, a shelf or tabletop or mounted above a cooktop.
*/
microwave?: boolean | null;
/**
* Microwave exception.
*/
microwaveException?: string | null;
/**
* Minibar. A small refrigerated cabinet in the guestroom containing bottles/cans of soft drinks, mini bottles of alcohol, and snacks. The items are most commonly available for a fee.
*/
minibar?: boolean | null;
/**
* Minibar exception.
*/
minibarException?: string | null;
/**
* Outdoor grill. Metal grates on which food is cooked over an open flame or electric heat source. Part of an outdoor apparatus that supports the grates. Also known as barbecue grill or barbecue.
*/
outdoorGrill?: boolean | null;
/**
* Outdoor grill exception.
*/
outdoorGrillException?: string | null;
/**
* Oven. A temperature controlled, heated metal cabinet powered by gas or electricity in which food is placed for the purpose of cooking or reheating.
*/
oven?: boolean | null;
/**
* Oven exception.
*/
ovenException?: string | null;
/**
* Refrigerator. A large, climate-controlled electrical cabinet with vertical doors. Built for the purpose of chilling and storing perishable foods.
*/
refrigerator?: boolean | null;
/**
* Refrigerator exception.
*/
refrigeratorException?: string | null;
/**
* Sink. A basin with a faucet attached to a water source and used for the purpose of washing and rinsing.
*/
sink?: boolean | null;
/**
* Sink exception.
*/
sinkException?: string | null;
/**
* Snackbar. A small cabinet in the guestroom containing snacks. The items are most commonly available for a fee.
*/
snackbar?: boolean | null;
/**
* Snackbar exception.
*/
snackbarException?: string | null;
/**
* Stove. A kitchen appliance powered by gas or electricity for the purpose of creating a flame or hot surface on which pots of food can be cooked. Also known as cooktop or hob.
*/
stove?: boolean | null;
/**
* Stove exception.
*/
stoveException?: string | null;
/**
* Tea station. A small area with the supplies needed to heat water and make tea.
*/
teaStation?: boolean | null;
/**
* Tea station exception.
*/
teaStationException?: string | null;
/**
* Toaster. A small, temperature controlled electric appliance with rectangular slots at the top that are lined with heated coils for the purpose of browning slices of bread products.
*/
toaster?: boolean | null;
/**
* Toaster exception.
*/
toasterException?: string | null;
}
/**
* Features in the living area.
*/
export interface Schema$LivingAreaFeatures {
/**
* Air conditioning. An electrical machine used to cool the temperature of the guestroom.
*/
airConditioning?: boolean | null;
/**
* Air conditioning exception.
*/
airConditioningException?: string | null;
/**
* Bathtub. A fixed plumbing feature set on the floor and consisting of a large container that accommodates the body of an adult for the purpose of seated bathing. Includes knobs or fixtures to control the temperature of the water, a faucet through which the water flows, and a drain that can be closed for filling and opened for draining.
*/
bathtub?: boolean | null;
/**
* Bathtub exception.
*/
bathtubException?: string | null;
/**
* Bidet. A plumbing fixture attached to a toilet or a low, fixed sink designed for the purpose of washing after toilet use.
*/
bidet?: boolean | null;
/**
* Bidet exception.
*/
bidetException?: string | null;
/**
* Dryer. An electrical machine designed to dry clothing.
*/
dryer?: boolean | null;
/**
* Dryer exception.
*/
dryerException?: string | null;
/**
* Electronic room key. A card coded by the check-in computer that is read by the lock on the hotel guestroom door to allow for entry.
*/
electronicRoomKey?: boolean | null;
/**
* Electronic room key exception.
*/
electronicRoomKeyException?: string | null;
/**
* Fireplace. A framed opening (aka hearth) at the base of a chimney in which logs or an electrical fire feature are burned to provide a relaxing ambiance or to heat the room. Often made of bricks or stone.
*/
fireplace?: boolean | null;
/**
* Fireplace exception.
*/
fireplaceException?: string | null;
/**
* Hairdryer. A handheld electric appliance that blows temperature-controlled air for the purpose of drying wet hair. Can be mounted to a bathroom wall or a freestanding device stored in the guestroom's bathroom or closet.
*/
hairdryer?: boolean | null;
/**
* Hairdryer exception.
*/
hairdryerException?: string | null;
/**
* Heating. An electrical machine used to warm the temperature of the guestroom.
*/
heating?: boolean | null;
/**
* Heating exception.
*/
heatingException?: string | null;
/**
* In-unit safe. A strong fireproof cabinet with a programmable lock, used for the protected storage of valuables in a guestroom. Often built into a closet.
*/
inunitSafe?: boolean | null;
/**
* In-unit safe exception.
*/
inunitSafeException?: string | null;
/**
* In-unit Wifi available. Guests can wirelessly connect to the Internet in the guestroom. Can be free or for a fee.
*/
inunitWifiAvailable?: boolean | null;
/**
* In-unit Wifi available exception.
*/
inunitWifiAvailableException?: string | null;
/**
* Ironing equipment. A device, usually with a flat metal base, that is heated to smooth, finish, or press clothes and a flat, padded, cloth-covered surface on which the clothes are worked.
*/
ironingEquipment?: boolean | null;
/**
* Ironing equipment exception.
*/
ironingEquipmentException?: string | null;
/**
* Pay per view movies. Televisions with channels that offer films that can be viewed for a fee, and have an interface to allow the viewer to accept the terms and approve payment.
*/
payPerViewMovies?: boolean | null;
/**
* Pay per view movies exception.
*/
payPerViewMoviesException?: string | null;
/**
* Private bathroom. A bathroom designated for the express use of the guests staying in a specific guestroom.
*/
privateBathroom?: boolean | null;
/**
* Private bathroom exception.
*/
privateBathroomException?: string | null;
/**
* Shower. A fixed plumbing fixture for standing bathing that features a tall spray spout or faucet through which water flows, a knob or knobs that control the water's temperature, and a drain in the floor.
*/
shower?: boolean | null;
/**
* Shower exception.
*/
showerException?: string | null;
/**
* Toilet. A fixed bathroom feature connected to a sewer or septic system and consisting of a water-flushed bowl with a seat, as well as a device that elicites the water-flushing action. Used for the process and disposal of human waste.
*/
toilet?: boolean | null;
/**
* Toilet exception.
*/
toiletException?: string | null;
/**
* TV. A television is available in the guestroom.
*/
tv?: boolean | null;
/**
* TV casting. A television equipped with a device through which the video entertainment accessed on a personal computer, phone or tablet can be wirelessly delivered to and viewed on the guestroom's television.
*/
tvCasting?: boolean | null;
/**
* TV exception.
*/
tvCastingException?: string | null;
/**
* TV exception.
*/
tvException?: string | null;
/**
* TV streaming. Televisions that embed a range of web-based apps to allow for watching media from those apps.
*/
tvStreaming?: boolean | null;
/**
* TV streaming exception.
*/
tvStreamingException?: string | null;
/**
* Universal power adapters. A power supply for electronic devices which plugs into a wall for the purpose of converting AC to a single DC voltage. Also know as AC adapter or charger.
*/
universalPowerAdapters?: boolean | null;
/**
* Universal power adapters exception.
*/
universalPowerAdaptersException?: string | null;
/**
* Washer. An electrical machine connected to a running water source designed to launder clothing.
*/
washer?: boolean | null;
/**
* Washer exception.
*/
washerException?: string | null;
}
/**
* Information about the layout of the living area.
*/
export interface Schema$LivingAreaLayout {
/**
* Balcony. An outdoor platform attached to a building and surrounded by a short wall, fence or other safety railing. The balcony is accessed through a door in a guestroom or suite and is for use by the guest staying in that room. May or may not include seating or outdoor furniture. Is not located on the ground floor. Also lanai.
*/
balcony?: boolean | null;
/**
* Balcony exception.
*/
balconyException?: string | null;
/**
* Living area sq meters. The measurement in meters of the area of a guestroom's living space.
*/
livingAreaSqMeters?: number | null;
/**
* Living area sq meters exception.
*/
livingAreaSqMetersException?: string | null;
/**
* Loft. A three-walled upper area accessed by stairs or a ladder that overlooks the lower area of a room.
*/
loft?: boolean | null;
/**
* Loft exception.
*/
loftException?: string | null;
/**
* Non smoking. A guestroom in which the smoking of cigarettes, cigars and pipes is prohibited.
*/
nonSmoking?: boolean | null;
/**
* Non smoking exception.
*/
nonSmokingException?: string | null;
/**
* Patio. A paved, outdoor area with seating attached to and accessed through a ground-floor guestroom for use by the occupants of the guestroom.
*/
patio?: boolean | null;
/**
* Patio exception.
*/
patioException?: string | null;
/**
* Stairs. There are steps leading from one level or story to another in the unit.
*/
stairs?: boolean | null;
/**
* Stairs exception.
*/
stairsException?: string | null;
}
/**
* Information about sleeping features in the living area.
*/
export interface Schema$LivingAreaSleeping {
/**
* Beds count. The number of permanent beds present in a guestroom. Does not include rollaway beds, cribs or sofabeds.
*/
bedsCount?: number | null;
/**
* Beds count exception.
*/
bedsCountException?: string | null;
/**
* Bunk beds count. The number of furniture pieces in which one framed mattress is fixed directly above another by means of a physical frame. This allows one person(s) to sleep in the bottom bunk and one person(s) to sleep in the top bunk. Also known as double decker bed.
*/
bunkBedsCount?: number | null;
/**
* Bunk beds count exception.
*/
bunkBedsCountException?: string | null;
/**
* Cribs count. The number of small beds for an infant or toddler that the guestroom can obtain. The bed is surrounded by a high railing to prevent the child from falling or climbing out of the bed
*/
cribsCount?: number | null;
/**
* Cribs count exception.
*/
cribsCountException?: string | null;
/**
* Double beds count. The number of medium beds measuring 53"W x 75"L (135cm x 191cm). Also known as full size bed.
*/
doubleBedsCount?: number | null;
/**
* Double beds count exception.
*/
doubleBedsCountException?: string | null;
/**
* Feather pillows. The option for guests to obtain bed pillows that are stuffed with the feathers and down of ducks or geese.
*/
featherPillows?: boolean | null;
/**
* Feather pillows exception.
*/
featherPillowsException?: string | null;
/**
* Hypoallergenic bedding. Bedding such as linens, pillows, mattress covers and/or mattresses that are made of materials known to be resistant to allergens such as mold, dust and dander.
*/
hypoallergenicBedding?: boolean | null;
/**
* Hypoallergenic bedding exception.
*/
hypoallergenicBeddingException?: string | null;
/**
* King beds count. The number of large beds measuring 76"W x 80"L (193cm x 102cm). Most often meant to accompany two people. Includes California king and super king.
*/
kingBedsCount?: number | null;
/**
* King beds count exception.
*/
kingBedsCountException?: string | null;
/**
* Memory foam pillows. The option for guests to obtain bed pillows that are stuffed with a man-made foam that responds to body heat by conforming to the body closely, and then recovers its shape when the pillow cools down.
*/
memoryFoamPillows?: boolean | null;
/**
* Memory foam pillows exception.
*/
memoryFoamPillowsException?: string | null;
/**
* Other beds count. The number of beds that are not standard mattress and boxspring setups such as Japanese tatami mats, trundle beds, air mattresses and cots.
*/
otherBedsCount?: number | null;
/**
* Other beds count exception.
*/
otherBedsCountException?: string | null;
/**
* Queen beds count. The number of medium-large beds measuring 60"W x 80"L (152cm x 102cm).
*/
queenBedsCount?: number | null;
/**
* Queen beds count exception.
*/
queenBedsCountException?: string | null;
/**
* Roll away beds count. The number of mattresses on wheeled frames that can be folded in half and rolled away for easy storage that the guestroom can obtain upon request.
*/
rollAwayBedsCount?: number | null;
/**
* Roll away beds count exception.
*/
rollAwayBedsCountException?: string | null;
/**
* Single or twin count beds. The number of smaller beds measuring 38"W x 75"L (97cm x 191cm) that can accommodate one adult.
*/
singleOrTwinBedsCount?: number | null;
/**
* Single or twin beds count exception.
*/
singleOrTwinBedsCountException?: string | null;
/**
* Sofa beds count. The number of specially designed sofas that can be made to serve as a bed by lowering its hinged upholstered back to horizontal position or by pulling out a concealed mattress.
*/
sofaBedsCount?: number | null;
/**
* Sofa beds count exception.
*/
sofaBedsCountException?: string | null;
/**
* Synthetic pillows. The option for guests to obtain bed pillows stuffed with polyester material crafted to reproduce the feel of a pillow stuffed with down and feathers.
*/
syntheticPillows?: boolean | null;
/**
* Synthetic pillows exception.
*/
syntheticPillowsException?: string | null;
}
/**
* Lodging of a location that provides accomodations.
*/
export interface Schema$Lodging {
/**
* Physical adaptations made to the property in consideration of varying levels of human physical ability.
*/
accessibility?: Schema$Accessibility;
/**
* Amenities and features related to leisure and play.
*/
activities?: Schema$Activities;
/**
* Output only. All units on the property have at least these attributes.
*/
allUnits?: Schema$GuestUnitFeatures;
/**
* Features of the property of specific interest to the business traveler.
*/
business?: Schema$Business;
/**
* Features of the shared living areas available in this Lodging.
*/
commonLivingArea?: Schema$LivingArea;
/**
* The ways in which the property provides guests with the ability to access the internet.
*/
connectivity?: Schema$Connectivity;
/**
* Services and amenities for families and young guests.
*/
families?: Schema$Families;
/**
* Meals, snacks, and beverages available at the property.
*/
foodAndDrink?: Schema$FoodAndDrink;
/**
* Individual GuestUnitTypes that are available in this Lodging.
*/
guestUnits?: Schema$GuestUnitType[];
/**
* Health and safety measures implemented by the hotel during COVID-19.
*/
healthAndSafety?: Schema$HealthAndSafety;
/**
* Conveniences provided in guest units to facilitate an easier, more comfortable stay.
*/
housekeeping?: Schema$Housekeeping;
/**
* Required. Metadata for the lodging.
*/
metadata?: Schema$LodgingMetadata;
/**
* Required. Google identifier for this location in the form: `locations/{location_id\}/lodging`
*/
name?: string | null;
/**
* Parking options at the property.
*/
parking?: Schema$Parking;
/**
* Policies regarding guest-owned animals.
*/
pets?: Schema$Pets;
/**
* Property rules that impact guests.
*/
policies?: Schema$Policies;
/**
* Swimming pool or recreational water facilities available at the hotel.
*/
pools?: Schema$Pools;
/**
* General factual information about the property's physical structure and important dates.
*/
property?: Schema$Property;
/**
* Conveniences or help provided by the property to facilitate an easier, more comfortable stay.
*/
services?: Schema$Services;
/**
* Output only. Some units on the property have as much as these attributes.
*/
someUnits?: Schema$GuestUnitFeatures;
/**
* Vehicles or vehicular services facilitated or owned by the property.
*/
transportation?: Schema$Transportation;
/**
* Guest facilities at the property to promote or maintain health, beauty, and fitness.
*/
wellness?: Schema$Wellness;
}
/**
* Metadata for the Lodging.
*/
export interface Schema$LodgingMetadata {
/**
* Required. The latest time at which the Lodging data is asserted to be true in the real world. This is not necessarily the time at which the request is made.
*/
updateTime?: string | null;
}
/**
* Minimized contact measures implemented by the hotel during COVID-19.
*/
export interface Schema$MinimizedContact {
/**
* No-contact check-in and check-out.
*/
contactlessCheckinCheckout?: boolean | null;
/**
* Contactless check-in check-out exception.
*/
contactlessCheckinCheckoutException?: string | null;
/**
* Keyless mobile entry to guest rooms.
*/
digitalGuestRoomKeys?: boolean | null;
/**
* Digital guest room keys exception.
*/
digitalGuestRoomKeysException?: string | null;
/**
* Housekeeping scheduled by request only.
*/
housekeepingScheduledRequestOnly?: boolean | null;
/**
* Housekeeping scheduled request only exception.
*/
housekeepingScheduledRequestOnlyException?: string | null;
/**
* High-touch items, such as magazines, removed from common areas.
*/
noHighTouchItemsCommonAreas?: boolean | null;
/**
* No high touch items common areas exception.
*/
noHighTouchItemsCommonAreasException?: string | null;
/**
* High-touch items, such as decorative pillows, removed from guest rooms.
*/
noHighTouchItemsGuestRooms?: boolean | null;
/**
* No high touch items guest rooms exception.
*/
noHighTouchItemsGuestRoomsException?: string | null;
/**
* Plastic key cards are disinfected or discarded.
*/
plasticKeycardsDisinfected?: boolean | null;
/**
* Plastic keycards disinfected exception.
*/
plasticKeycardsDisinfectedException?: string | null;
/**
* Buffer maintained between room bookings.
*/
roomBookingsBuffer?: boolean | null;
/**
* Room bookings buffer exception.
*/
roomBookingsBufferException?: string | null;
}
/**
* Parking options at the property.
*/
export interface Schema$Parking {
/**
* Electric car charging stations. Electric power stations, usually located outdoors, into which guests plug their electric cars to receive a charge.
*/
electricCarChargingStations?: boolean | null;
/**
* Electric car charging stations exception.
*/
electricCarChargingStationsException?: string | null;
/**
* Free parking. The hotel allows the cars of guests to be parked for free. Parking facility may be an outdoor lot or an indoor garage, but must be onsite. Nearby parking does not apply. Parking may be performed by the guest or by hotel staff. Free parking must be available to all guests (limited conditions does not apply).
*/
freeParking?: boolean | null;
/**
* Free parking exception.
*/
freeParkingException?: string | null;
/**
* Free self parking. Guests park their own cars for free. Parking facility may be an outdoor lot or an indoor garage, but must be onsite. Nearby parking does not apply.
*/
freeSelfParking?: boolean | null;
/**
* Free self parking exception.
*/
freeSelfParkingException?: string | null;
/**
* Free valet parking. Hotel staff member parks the cars of guests. Parking with this service is free.
*/
freeValetParking?: boolean | null;
/**
* Free valet parking exception.
*/
freeValetParkingException?: string | null;
/**
* Parking available. The hotel allows the cars of guests to be parked. Can be free or for a fee. Parking facility may be an outdoor lot or an indoor garage, but must be onsite. Nearby parking does not apply. Parking may be performed by the guest or by hotel staff.
*/
parkingAvailable?: boolean | null;
/**
* Parking available exception.
*/
parkingAvailableException?: string | null;
/**
* Self parking available. Guests park their own cars. Parking facility may be an outdoor lot or an indoor garage, but must be onsite. Nearby parking does not apply. Can be free or for a fee.
*/
selfParkingAvailable?: boolean | null;
/**
* Self parking available exception.
*/
selfParkingAvailableException?: string | null;
/**
* Valet parking available. Hotel staff member parks the cars of guests. Parking with this service can be free or for a fee.
*/
valetParkingAvailable?: boolean | null;
/**
* Valet parking available exception.
*/
valetParkingAvailableException?: string | null;
}
/**
* Forms of payment accepted at the property.
*/
export interface Schema$PaymentOptions {
/**
* Cash. The hotel accepts payment by paper/coin currency.
*/
cash?: boolean | null;
/**
* Cash exception.
*/
cashException?: string | null;
/**
* Cheque. The hotel accepts a printed document issued by the guest's bank in the guest's name as a form of payment.
*/
cheque?: boolean | null;
/**
* Cheque exception.
*/
chequeException?: string | null;
/**
* Credit card. The hotel accepts payment by a card issued by a bank or credit card company. Also known as charge card, debit card, bank card, or charge plate.
*/
creditCard?: boolean | null;
/**
* Credit card exception.
*/
creditCardException?: string | null;
/**
* Debit card. The hotel accepts a bank-issued card that immediately deducts the charged funds from the guest's bank account upon processing.
*/
debitCard?: boolean | null;
/**
* Debit card exception.
*/
debitCardException?: string | null;
/**
* Mobile nfc. The hotel has the compatible computer hardware terminal that reads and charges a payment app on the guest's smartphone without requiring the two devices to make physical contact. Also known as Apple Pay, Google Pay, Samsung Pay.
*/
mobileNfc?: boolean | null;
/**
* Mobile nfc exception.
*/
mobileNfcException?: string | null;
}
/**
* Personal protection measures implemented by the hotel during COVID-19.
*/
export interface Schema$PersonalProtection {
/**
* Hand-sanitizer and/or sanitizing wipes are offered in common areas.
*/
commonAreasOfferSanitizingItems?: boolean | null;
/**
* Common areas offer sanitizing items exception.
*/
commonAreasOfferSanitizingItemsException?: string | null;
/**
* Masks required on the property.
*/
faceMaskRequired?: boolean | null;
/**
* Face mask required exception.
*/
faceMaskRequiredException?: string | null;
/**
* In-room hygiene kits with masks, hand sanitizer, and/or antibacterial wipes.
*/
guestRoomHygieneKitsAvailable?: boolean | null;
/**
* Guest room hygiene kits available exception.
*/
guestRoomHygieneKitsAvailableException?: string | null;
/**
* Masks and/or gloves available for guests.
*/
protectiveEquipmentAvailable?: boolean | null;
/**
* Protective equipment available exception.
*/
protectiveEquipmentAvailableException?: string | null;
}
/**
* Policies regarding guest-owned animals.
*/
export interface Schema$Pets {
/**
* Cats allowed. Domesticated felines are permitted at the property and allowed to stay in the guest room of their owner. May or may not require a fee.
*/
catsAllowed?: boolean | null;
/**
* Cats allowed exception.
*/
catsAllowedException?: string | null;
/**
* Dogs allowed. Domesticated canines are permitted at the property and allowed to stay in the guest room of their owner. May or may not require a fee.
*/
dogsAllowed?: boolean | null;
/**
* Dogs allowed exception.
*/
dogsAllowedException?: string | null;
/**
* Pets allowed. Household animals are allowed at the property and in the specific guest room of their owner. May or may not include dogs, cats, reptiles and/or fish. May or may not require a fee. Service animals are not considered to be pets, so not governed by this policy.
*/
petsAllowed?: boolean | null;
/**
* Pets allowed exception.
*/
petsAllowedException?: string | null;
/**
* Pets allowed free. Household animals are allowed at the property and in the specific guest room of their owner for free. May or may not include dogs, cats, reptiles, and/or fish.
*/
petsAllowedFree?: boolean | null;
/**
* Pets allowed free exception.
*/
petsAllowedFreeException?: string | null;
}
/**
* Physical distancing measures implemented by the hotel during COVID-19.
*/
export interface Schema$PhysicalDistancing {
/**
* Common areas arranged to maintain physical distancing.
*/
commonAreasPhysicalDistancingArranged?: boolean | null;
/**
* Common areas physical distancing arranged exception.
*/
commonAreasPhysicalDistancingArrangedException?: string | null;
/**
* Physical distancing required.
*/
physicalDistancingRequired?: boolean | null;
/**
* Physical distancing required exception.
*/
physicalDistancingRequiredException?: string | null;
/**
* Safety dividers at front desk and other locations.
*/
safetyDividers?: boolean | null;
/**
* Safety dividers exception.
*/
safetyDividersException?: string | null;
/**
* Guest occupancy limited within shared facilities.
*/
sharedAreasLimitedOccupancy?: boolean | null;
/**
* Shared areas limited occupancy exception.
*/
sharedAreasLimitedOccupancyException?: string | null;
/**
* Private spaces designated in spa and wellness areas.
*/
wellnessAreasHavePrivateSpaces?: boolean | null;
/**
* Wellness areas have private spaces exception.
*/
wellnessAreasHavePrivateSpacesException?: string | null;
}
/**
* Property rules that impact guests.
*/
export interface Schema$Policies {
/**
* All inclusive available. The hotel offers a rate option that includes the cost of the room, meals, activities, and other amenities that might otherwise be charged separately.
*/
allInclusiveAvailable?: boolean | null;
/**
* All inclusive available exception.
*/
allInclusiveAvailableException?: string | null;
/**
* All inclusive only. The only rate option offered by the hotel is a rate that includes the cost of the room, meals, activities and other amenities that might otherwise be charged separately.
*/
allInclusiveOnly?: boolean | null;
/**
* All inclusive only exception.
*/
allInclusiveOnlyException?: string | null;
/**
* Check-in time. The time of the day at which the hotel begins providing guests access to their unit at the beginning of their stay.
*/
checkinTime?: Schema$TimeOfDay;
/**
* Check-in time exception.
*/
checkinTimeException?: string | null;
/**
* Check-out time. The time of the day on the last day of a guest's reserved stay at which the guest must vacate their room and settle their bill. Some hotels may offer late or early check out for a fee.
*/
checkoutTime?: Schema$TimeOfDay;
/**
* Check-out time exception.
*/
checkoutTimeException?: string | null;
/**
* Kids stay free. The children of guests are allowed to stay in the room/suite of a parent or adult without an additional fee. The policy may or may not stipulate a limit of the child's age or the overall number of children allowed.
*/
kidsStayFree?: boolean | null;
/**
* Kids stay free exception.
*/
kidsStayFreeException?: string | null;
/**
* Max child age. The hotel allows children up to a certain age to stay in the room/suite of a parent or adult without an additional fee.
*/
maxChildAge?: number | null;
/**
* Max child age exception.
*/
maxChildAgeException?: string | null;
/**
* Max kids stay free count. The hotel allows a specific, defined number of children to stay in the room/suite of a parent or adult without an additional fee.
*/
maxKidsStayFreeCount?: number | null;
/**
* Max kids stay free count exception.
*/
maxKidsStayFreeCountException?: string | null;
/**
* Forms of payment accepted at the property.
*/
paymentOptions?: Schema$PaymentOptions;
/**
* Smoke free property. Smoking is not allowed inside the building, on balconies, or in outside spaces. Hotels that offer a designated area for guests to smoke are not considered smoke-free properties.
*/
smokeFreeProperty?: boolean | null;
/**
* Smoke free property exception.
*/
smokeFreePropertyException?: string | null;
}
/**
* Swimming pool or recreational water facilities available at the hotel.
*/
export interface Schema$Pools {
/**
* Adult pool. A pool restricted for use by adults only. Can be indoors or outdoors.
*/
adultPool?: boolean | null;
/**
* Adult pool exception.
*/
adultPoolException?: string | null;
/**
* Hot tub. A man-made pool containing bubbling water maintained at a higher temperature and circulated by aerating jets for the purpose of soaking, relaxation and hydrotherapy. Can be indoors or outdoors. Not used for active swimming. Also known as Jacuzzi. Hot tub must be in a common area where all guests can access it. Does not apply to room-specific hot tubs that are only accessible to guest occupying that room.
*/
hotTub?: boolean | null;
/**
* Hot tub exception.
*/
hotTubException?: string | null;
/**
* Indoor pool. A pool located inside the hotel and available for guests to use for swimming and/or soaking. Use may or may not be restricted to adults and/or children.
*/
indoorPool?: boolean | null;
/**
* Indoor pool exception.
*/
indoorPoolException?: string | null;
/**
* Indoor pools count. The sum of all indoor pools at the hotel.
*/
indoorPoolsCount?: number | null;
/**
* Indoor pools count exception.
*/
indoorPoolsCountException?: string | null;
/**
* Lazy river. A man-made pool or several interconnected recreational pools built to mimic the shape and current of a winding river where guests float in the water on inflated rubber tubes. Can be indoors or outdoors.
*/
lazyRiver?: boolean | null;
/**
* Lazy river exception.
*/
lazyRiverException?: string | null;
/**
* Lifeguard. A trained member of the hotel staff stationed by the hotel's indoor or outdoor swimming area and responsible for the safety of swimming guests.
*/
lifeguard?: boolean | null;
/**
* Lifeguard exception.
*/
lifeguardException?: string | null;
/**
* Outdoor pool. A pool located outside on the grounds of the hotel and available for guests to use for swimming, soaking or recreation. Use may or may not be restricted to adults and/or children.
*/
outdoorPool?: boolean | null;
/**
* Outdoor pool exception.
*/
outdoorPoolException?: string | null;
/**
* Outdoor pools count. The sum of all outdoor pools at the hotel.
*/
outdoorPoolsCount?: number | null;
/**
* Outdoor pools count exception.
*/
outdoorPoolsCountException?: string | null;
/**
* Pool. The presence of a pool, either indoors or outdoors, for guests to use for swimming and/or soaking. Use may or may not be restricted to adults and/or children.
*/
pool?: boolean | null;
/**
* Pool exception.
*/
poolException?: string | null;
/**
* Pools count. The sum of all pools at the hotel.
*/
poolsCount?: number | null;
/**
* Pools count exception.
*/
poolsCountException?: string | null;
/**
* Wading pool. A shallow pool designed for small children to play in. Can be indoors or outdoors. Also known as kiddie pool.
*/
wadingPool?: boolean | null;
/**
* Wading pool exception.
*/
wadingPoolException?: string | null;
/**
* Water park. An aquatic recreation area with a large pool or series of pools that has features such as a water slide or tube, wavepool, fountains, rope swings, and/or obstacle course. Can be indoors or outdoors. Also known as adventure pool.
*/
waterPark?: boolean | null;
/**
* Water park exception.
*/
waterParkException?: string | null;
/**
* Waterslide. A continuously wetted chute positioned by an indoor or outdoor pool which people slide down into the water.
*/
waterslide?: boolean | null;
/**
* Waterslide exception.
*/
waterslideException?: string | null;
/**
* Wave pool. A large indoor or outdoor pool with a machine that produces water currents to mimic the ocean's crests.
*/
wavePool?: boolean | null;
/**
* Wave pool exception.
*/
wavePoolException?: string | null;
}
/**
* General factual information about the property's physical structure and important dates.
*/
export interface Schema$Property {
/**
* Built year. The year that construction of the property was completed.
*/
builtYear?: number | null;
/**
* Built year exception.
*/
builtYearException?: string | null;
/**
* Floors count. The number of stories the building has from the ground floor to the top floor that are accessible to guests.
*/
floorsCount?: number | null;
/**
* Floors count exception.
*/
floorsCountException?: string | null;
/**
* Last renovated year. The year when the most recent renovation of the property was completed. Renovation may include all or any combination of the following: the units, the public spaces, the exterior, or the interior.
*/
lastRenovatedYear?: number | null;
/**
* Last renovated year exception.
*/
lastRenovatedYearException?: string | null;
/**
* Rooms count. The total number of rooms and suites bookable by guests for an overnight stay. Does not include event space, public spaces, conference rooms, fitness rooms, business centers, spa, salon, restaurants/bars, or shops.
*/
roomsCount?: number | null;
/**
* Rooms count exception.
*/
roomsCountException?: string | null;
}
/**
* Conveniences or help provided by the property to facilitate an easier, more comfortable stay.
*/
export interface Schema$Services {
/**
* Baggage storage. A provision for guests to leave their bags at the hotel when they arrive for their stay before the official check-in time. May or may not apply for guests who wish to leave their bags after check-out and before departing the locale. Also known as bag dropoff.
*/
baggageStorage?: boolean | null;
/**
* Baggage storage exception.
*/
baggageStorageException?: string | null;
/**
* Concierge. Hotel staff member(s) responsible for facilitating an easy, comfortable stay through making reservations for meals, sourcing theater tickets, arranging tours, finding a doctor, making recommendations, and answering questions.
*/
concierge?: boolean | null;
/**
* Concierge exception.
*/
conciergeException?: string | null;
/**
* Convenience store. A shop at the hotel primarily selling snacks, drinks, non-prescription medicines, health and beauty aids, magazines and newspapers.
*/
convenienceStore?: boolean | null;
/**
* Convenience store exception.
*/
convenienceStoreException?: string | null;
/**
* Currency exchange. A staff member or automated machine tasked with the transaction of providing the native currency of the hotel's locale in exchange for the foreign currency provided by a guest.
*/
currencyExchange?: boolean | null;
/**
* Currency exchange exception.
*/
currencyExchangeException?: string | null;
/**
* Elevator. A passenger elevator that transports guests from one story to another. Also known as lift.
*/
elevator?: boolean | null;
/**
* Elevator exception.
*/
elevatorException?: string | null;
/**
* Front desk. A counter or desk in the lobby or the immediate interior of the hotel where a member of the staff greets guests and processes the information related to their stay (including check-in and check-out). May or may not be manned and open 24/7.
*/
frontDesk?: boolean | null;
/**
* Front desk exception.
*/
frontDeskException?: string | null;
/**
* Full service laundry. Laundry and dry cleaning facilitated and handled by the hotel on behalf of the guest. Does not include the provision for guests to do their own laundry in on-site machines.
*/
fullServiceLaundry?: boolean | null;
/**
* Full service laundry exception.
*/
fullServiceLaundryException?: string | null;
/**
* Gift shop. An on-site store primarily selling souvenirs, mementos and other gift items. May or may not also sell sundries, magazines and newspapers, clothing, or snacks.
*/
giftShop?: boolean | null;
/**
* Gift shop exception.
*/
giftShopException?: string | null;
/**
* Languages spoken by at least one staff member.
*/
languagesSpoken?: Schema$LanguageSpoken[];
/**
* Self service laundry. On-site clothes washers and dryers accessible to guests for the purpose of washing and drying their own clothes. May or may not require payment to use the machines.
*/
selfServiceLaundry?: boolean | null;
/**
* Self service laundry exception.
*/
selfServiceLaundryException?: string | null;
/**
* Social hour. A reception with complimentary soft drinks, tea, coffee, wine and/or cocktails in the afternoon or evening. Can be hosted by hotel staff or guests may serve themselves. Also known as wine hour. The availability of coffee/tea in the lobby throughout the day does not constitute a social or wine hour.
*/
socialHour?: boolean | null;
/**
* Social hour exception.
*/
socialHourException?: string | null;
/**
* 24hr front desk. Front desk is staffed 24 hours a day.
*/
twentyFourHourFrontDesk?: boolean | null;
/**
* 24hr front desk exception.
*/
twentyFourHourFrontDeskException?: string | null;
/**
* Wake up calls. By direction of the guest, a hotel staff member will phone the guest unit at the requested hour. Also known as morning call.
*/
wakeUpCalls?: boolean | null;
/**
* Wake up calls exception.
*/
wakeUpCallsException?: string | null;
}
/**
* Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and `google.protobuf.Timestamp`.
*/
export interface Schema$TimeOfDay {
/**
* Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
*/
hours?: number | null;
/**
* Minutes of hour of day. Must be from 0 to 59.
*/
minutes?: number | null;
/**
* Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
*/
nanos?: number | null;
/**
* Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
*/
seconds?: number | null;
}
/**
* Vehicles or vehicular services facilitated or owned by the property.
*/
export interface Schema$Transportation {
/**
* Airport shuttle. The hotel provides guests with a chauffeured van or bus to and from the airport. Can be free or for a fee. Guests may share the vehicle with other guests unknown to them. Applies if the hotel has a third-party shuttle service (office/desk etc.) within the hotel. As long as hotel provides this service, it doesn't matter if it's directly with them or a third party they work with. Does not apply if guest has to coordinate with an entity outside/other than the hotel.
*/
airportShuttle?: boolean | null;
/**
* Airport shuttle exception.
*/
airportShuttleException?: string | null;
/**
* Car rental on property. A branch of a rental car company with a processing desk in the hotel. Available cars for rent may be awaiting at the hotel or in a nearby lot.
*/
carRentalOnProperty?: boolean | null;
/**
* Car rental on property exception.
*/
carRentalOnPropertyException?: string | null;
/**
* Free airport shuttle. Airport shuttle is free to guests. Must be free to all guests without any conditions.
*/
freeAirportShuttle?: boolean | null;
/**
* Free airport shuttle exception.
*/
freeAirportShuttleException?: string | null;
/**
* Free private car service. Private chauffeured car service is free to guests.
*/
freePrivateCarService?: boolean | null;
/**
* Free private car service exception.
*/
freePrivateCarServiceException?: string | null;
/**
* Local shuttle. A car, van or bus provided by the hotel to transport guests to destinations within a specified range of distance around the hotel. Usually shopping and/or convention centers, downtown districts, or beaches. Can be free or for a fee.
*/
localShuttle?: boolean | null;
/**
* Local shuttle exception.
*/
localShuttleException?: string | null;
/**
* Private car service. Hotel provides a private chauffeured car to transport guests to destinations. Passengers in the car are either alone or are known to one another and have requested the car together. Service can be free or for a fee and travel distance is usually limited to a specific range. Not a taxi.
*/
privateCarService?: boolean | null;
/**
* Private car service exception.
*/
privateCarServiceException?: string | null;
/**
* Transfer. Hotel provides a shuttle service or car service to take guests to and from the nearest airport or train station. Can be free or for a fee. Guests may share the vehicle with other guests unknown to them.
*/
transfer?: boolean | null;
/**
* Transfer exception.
*/
transferException?: string | null;
}
/**
* Views available from the guest unit itself.
*/
export interface Schema$ViewsFromUnit {
/**
* Beach view. A guestroom that features a window through which guests can see the beach.
*/
beachView?: boolean | null;
/**
* Beach view exception.
*/
beachViewException?: string | null;
/**
* City view. A guestroom that features a window through which guests can see the buildings, parks and/or streets of the city.
*/
cityView?: boolean | null;
/**
* City view exception.
*/
cityViewException?: string | null;
/**
* Garden view. A guestroom that features a window through which guests can see a garden.
*/
gardenView?: boolean | null;
/**
* Garden view exception.
*/
gardenViewException?: string | null;
/**
* Lake view.
*/
lakeView?: boolean | null;
/**
* Lake view exception.
*/
lakeViewException?: string | null;
/**
* Landmark view. A guestroom that features a window through which guests can see a landmark such as the countryside, a golf course, the forest, a park, a rain forst, a mountain or a slope.
*/
landmarkView?: boolean | null;
/**
* Landmark view exception.
*/
landmarkViewException?: string | null;
/**
* Ocean view. A guestroom that features a window through which guests can see the ocean.
*/
oceanView?: boolean | null;
/**
* Ocean view exception.
*/
oceanViewException?: string | null;
/**
* Pool view. A guestroom that features a window through which guests can see the hotel's swimming pool.
*/
poolView?: boolean | null;
/**
* Pool view exception.
*/
poolViewException?: string | null;
/**
* Valley view. A guestroom that features a window through which guests can see over a valley.
*/
valleyView?: boolean | null;
/**
* Valley view exception.
*/
valleyViewException?: string | null;
}
/**
* Guest facilities at the property to promote or maintain health, beauty, and fitness.
*/
export interface Schema$Wellness {
/**
* Doctor on call. The hotel has a contract with a medical professional who provides services to hotel guests should they fall ill during their stay. The doctor may or may not have an on-site office or be at the hotel at all times.
*/
doctorOnCall?: boolean | null;
/**
* Doctor on call exception.
*/
doctorOnCallException?: string | null;
/**
* Elliptical machine. An electric, stationary fitness machine with pedals that simulates climbing, walking or running and provides a user-controlled range of speeds and tensions. May not have arm-controlled levers to work out the upper body as well. Commonly found in a gym, fitness room, health center, or health club.
*/
ellipticalMachine?: boolean | null;
/**
* Elliptical machine exception.
*/
ellipticalMachineException?: string | null;
/**
* Fitness center. A room or building at the hotel containing equipment to promote physical activity, such as treadmills, elliptical machines, stationary bikes, weight machines, free weights, and/or stretching mats. Use of the fitness center can be free or for a fee. May or may not be staffed. May or may not offer instructor-led classes in various styles of physical conditioning. May or may not be open 24/7. May or may not include locker rooms and showers. Also known as health club, gym, fitness room, health center.
*/
fitnessCenter?: boolean | null;
/**
* Fitness center exception.
*/
fitnessCenterException?: string | null;
/**
* Free fitness center. Guests may use the fitness center for free.
*/
freeFitnessCenter?: boolean | null;
/**
* Free fitness center exception.
*/
freeFitnessCenterException?: string | null;
/**
* Free weights. Individual handheld fitness equipment of varied weights used for upper body strength training or bodybuilding. Also known as barbells, dumbbells, or kettlebells. Often stored on a rack with the weights arranged from light to heavy. Commonly found in a gym, fitness room, health center, or health club.
*/
freeWeights?: boolean | null;
/**
* Free weights exception.
*/
freeWeightsException?: string | null;
/**
* Massage. A service provided by a trained massage therapist involving the physical manipulation of a guest's muscles in order to achieve relaxation or pain relief.
*/
massage?: boolean | null;
/**
* Massage exception.
*/
massageException?: string | null;
/**
* Salon. A room at the hotel where professionals provide hair styling services such as shampooing, blow drying, hair dos, hair cutting and hair coloring. Also known as hairdresser or beauty salon.
*/
salon?: boolean | null;
/**
* Salon exception.
*/
salonException?: string | null;
/**
* Sauna. A wood-paneled room heated to a high temperature where guests sit on built-in wood benches for the purpose of perspiring and relaxing their muscles. Can be dry or slightly wet heat. Not a steam room.
*/
sauna?: boolean | null;
/**
* Sauna exception.
*/
saunaException?: string | null;
/**
* Spa. A designated area, room or building at the hotel offering health and beauty treatment through such means as steam baths, exercise equipment, and massage. May also offer facials, nail care, and hair care. Services are usually available by appointment and for an additional fee. Does not apply if hotel only offers a steam room; must offer other beauty and/or health treatments as well.
*/
spa?: boolean | null;
/**
* Spa exception.
*/
spaException?: string | null;
/**
* Treadmill. An electric stationary fitness machine that simulates a moving path to promote walking or running within a range of user-controlled speeds and inclines. Also known as running machine. Commonly found in a gym, fitness room, health center, or health club.
*/
treadmill?: boolean | null;
/**
* Treadmill exception.
*/
treadmillException?: string | null;
/**
* Weight machine. Non-electronic fitness equipment designed for the user to target the exertion of different muscles. Usually incorporates a padded seat, a stack of flat weights and various bars and pulleys. May be designed for toning a specific part of the body or may involve different user-controlled settings, hardware and pulleys so as to provide an overall workout in one machine. Commonly found in a gym, fitness center, fitness room, or health club.
*/
weightMachine?: boolean | null;
/**
* Weight machine exception.
*/
weightMachineException?: string | null;
}
export class Resource$Locations {
context: APIRequestContext;
lodging: Resource$Locations$Lodging;
constructor(context: APIRequestContext);
/**
* Returns the Lodging of a specific location.
* @example
* ```js
* // Before running the sample:
* // - Enable the API at:
* // https://console.developers.google.com/apis/api/mybusinesslodging.googleapis.com
* // - Login into gcloud by running:
* // `$ gcloud auth application-default login`
* // - Install the npm module by running:
* // `$ npm install googleapis`
*
* const {google} = require('googleapis');
* const mybusinesslodging = google.mybusinesslodging('v1');
*
* async function main() {
* const auth = new google.auth.GoogleAuth({
* // Scopes can be specified either as an array or as a single, space-delimited string.
* scopes: [],
* });
*
* // Acquire an auth client, and bind it to all future calls
* const authClient = await auth.getClient();
* google.options({auth: authClient});
*
* // Do the magic
* const res = await mybusinesslodging.locations.getLodging({
* // Required. Google identifier for this location in the form: `locations/{location_id\}/lodging`
* name: 'locations/my-location/lodging',
* // Required. The specific fields to return. Use "*" to include all fields. Repeated field items cannot be individually specified.
* readMask: 'placeholder-value',
* });
* console.log(res.data);
*
* // Example response
* // {
* // "accessibility": {},
* // "activities": {},
* // "allUnits": {},
* // "business": {},
* // "commonLivingArea": {},
* // "connectivity": {},
* // "families": {},
* // "foodAndDrink": {},
* // "guestUnits": [],
* // "healthAndSafety": {},
* // "housekeeping": {},
* // "metadata": {},
* // "name": "my_name",
* // "parking": {},
* // "pets": {},
* // "policies": {},
* // "pools": {},
* // "property": {},
* // "services": {},
* // "someUnits": {},
* // "transportation": {},
* // "wellness": {}
* // }
* }
*
* main().catch(e => {
* console.error(e);
* throw e;
* });
*
* ```
*
* @param params - Parameters for request
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
* @param callback - Optional callback that handles the response.
* @returns A promise if used with async/await, or void if used with a callback.
*/
getLodging(params: Params$Resource$Locations$Getlodging, options: StreamMethodOptions): GaxiosPromise<Readable>;
getLodging(params?: Params$Resource$Locations$Getlodging, options?: MethodOptions): GaxiosPromise<Schema$Lodging>;
getLodging(params: Params$Resource$Locations$Getlodging, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
getLodging(params: Params$Resource$Locations$Getlodging, options: MethodOptions | BodyResponseCallback<Schema$Lodging>, callback: BodyResponseCallback<Schema$Lodging>): void;
getLodging(params: Params$Resource$Locations$Getlodging, callback: BodyResponseCallback<Schema$Lodging>): void;
getLodging(callback: BodyResponseCallback<Schema$Lodging>): void;
/**
* Updates the Lodging of a specific location.
* @example
* ```js
* // Before running the sample:
* // - Enable the API at:
* // https://console.developers.google.com/apis/api/mybusinesslodging.googleapis.com
* // - Login into gcloud by running:
* // `$ gcloud auth application-default login`
* // - Install the npm module by running:
* // `$ npm install googleapis`
*
* const {google} = require('googleapis');
* const mybusinesslodging = google.mybusinesslodging('v1');
*
* async function main() {
* const auth = new google.auth.GoogleAuth({
* // Scopes can be specified either as an array or as a single, space-delimited string.
* scopes: [],
* });
*
* // Acquire an auth client, and bind it to all future calls
* const authClient = await auth.getClient();
* google.options({auth: authClient});
*
* // Do the magic
* const res = await mybusinesslodging.locations.updateLodging({
* // Required. Google identifier for this location in the form: `locations/{location_id\}/lodging`
* name: 'locations/my-location/lodging',
* // Required. The specific fields to update. Use "*" to update all fields, which may include unsetting empty fields in the request. Repeated field items cannot be individually updated.
* updateMask: 'placeholder-value',
*
* // Request body metadata
* requestBody: {
* // request body parameters
* // {
* // "accessibility": {},
* // "activities": {},
* // "allUnits": {},
* // "business": {},
* // "commonLivingArea": {},
* // "connectivity": {},
* // "families": {},
* // "foodAndDrink": {},
* // "guestUnits": [],
* // "healthAndSafety": {},
* // "housekeeping": {},
* // "metadata": {},
* // "name": "my_name",
* // "parking": {},
* // "pets": {},
* // "policies": {},
* // "pools": {},
* // "property": {},
* // "services": {},
* // "someUnits": {},
* // "transportation": {},
* // "wellness": {}
* // }
* },
* });
* console.log(res.data);
*
* // Example response
* // {
* // "accessibility": {},
* // "activities": {},
* // "allUnits": {},
* // "business": {},
* // "commonLivingArea": {},
* // "connectivity": {},
* // "families": {},
* // "foodAndDrink": {},
* // "guestUnits": [],
* // "healthAndSafety": {},
* // "housekeeping": {},
* // "metadata": {},
* // "name": "my_name",
* // "parking": {},
* // "pets": {},
* // "policies": {},
* // "pools": {},
* // "property": {},
* // "services": {},
* // "someUnits": {},
* // "transportation": {},
* // "wellness": {}
* // }
* }
*
* main().catch(e => {
* console.error(e);
* throw e;
* });
*
* ```
*
* @param params - Parameters for request
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
* @param callback - Optional callback that handles the response.
* @returns A promise if used with async/await, or void if used with a callback.
*/
updateLodging(params: Params$Resource$Locations$Updatelodging, options: StreamMethodOptions): GaxiosPromise<Readable>;
updateLodging(params?: Params$Resource$Locations$Updatelodging, options?: MethodOptions): GaxiosPromise<Schema$Lodging>;
updateLodging(params: Params$Resource$Locations$Updatelodging, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
updateLodging(params: Params$Resource$Locations$Updatelodging, options: MethodOptions | BodyResponseCallback<Schema$Lodging>, callback: BodyResponseCallback<Schema$Lodging>): void;
updateLodging(params: Params$Resource$Locations$Updatelodging, callback: BodyResponseCallback<Schema$Lodging>): void;
updateLodging(callback: BodyResponseCallback<Schema$Lodging>): void;
}
export interface Params$Resource$Locations$Getlodging extends StandardParameters {
/**
* Required. Google identifier for this location in the form: `locations/{location_id\}/lodging`
*/
name?: string;
/**
* Required. The specific fields to return. Use "*" to include all fields. Repeated field items cannot be individually specified.
*/
readMask?: string;
}
export interface Params$Resource$Locations$Updatelodging extends StandardParameters {
/**
* Required. Google identifier for this location in the form: `locations/{location_id\}/lodging`
*/
name?: string;
/**
* Required. The specific fields to update. Use "*" to update all fields, which may include unsetting empty fields in the request. Repeated field items cannot be individually updated.
*/
updateMask?: string;
/**
* Request body metadata
*/
requestBody?: Schema$Lodging;
}
export class Resource$Locations$Lodging {
context: APIRequestContext;
constructor(context: APIRequestContext);
/**
* Returns the Google updated Lodging of a specific location.
* @example
* ```js
* // Before running the sample:
* // - Enable the API at:
* // https://console.developers.google.com/apis/api/mybusinesslodging.googleapis.com
* // - Login into gcloud by running:
* // `$ gcloud auth application-default login`
* // - Install the npm module by running:
* // `$ npm install googleapis`
*
* const {google} = require('googleapis');
* const mybusinesslodging = google.mybusinesslodging('v1');
*
* async function main() {
* const auth = new google.auth.GoogleAuth({
* // Scopes can be specified either as an array or as a single, space-delimited string.
* scopes: [],
* });
*
* // Acquire an auth client, and bind it to all future calls
* const authClient = await auth.getClient();
* google.options({auth: authClient});
*
* // Do the magic
* const res = await mybusinesslodging.locations.lodging.getGoogleUpdated({
* // Required. Google identifier for this location in the form: `accounts/{account_id\}/locations/{location_id\}/lodging`
* name: 'locations/my-location/lodging',
* // Required. The specific fields to return. Use "*" to include all fields. Repeated field items cannot be individually specified.
* readMask: 'placeholder-value',
* });
* console.log(res.data);
*
* // Example response
* // {
* // "diffMask": "my_diffMask",
* // "lodging": {}
* // }
* }
*
* main().catch(e => {
* console.error(e);
* throw e;
* });
*
* ```
*
* @param params - Parameters for request
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
* @param callback - Optional callback that handles the response.
* @returns A promise if used with async/await, or void if used with a callback.
*/
getGoogleUpdated(params: Params$Resource$Locations$Lodging$Getgoogleupdated, options: StreamMethodOptions): GaxiosPromise<Readable>;
getGoogleUpdated(params?: Params$Resource$Locations$Lodging$Getgoogleupdated, options?: MethodOptions): GaxiosPromise<Schema$GetGoogleUpdatedLodgingResponse>;
getGoogleUpdated(params: Params$Resource$Locations$Lodging$Getgoogleupdated, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
getGoogleUpdated(params: Params$Resource$Locations$Lodging$Getgoogleupdated, options: MethodOptions | BodyResponseCallback<Schema$GetGoogleUpdatedLodgingResponse>, callback: BodyResponseCallback<Schema$GetGoogleUpdatedLodgingResponse>): void;
getGoogleUpdated(params: Params$Resource$Locations$Lodging$Getgoogleupdated, callback: BodyResponseCallback<Schema$GetGoogleUpdatedLodgingResponse>): void;
getGoogleUpdated(callback: BodyResponseCallback<Schema$GetGoogleUpdatedLodgingResponse>): void;
}
export interface Params$Resource$Locations$Lodging$Getgoogleupdated extends StandardParameters {
/**
* Required. Google identifier for this location in the form: `accounts/{account_id\}/locations/{location_id\}/lodging`
*/
name?: string;
/**
* Required. The specific fields to return. Use "*" to include all fields. Repeated field items cannot be individually specified.
*/
readMask?: string;
}
export {};
}