@alicloud/aligenieip_1_0 1.0.9 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +1575 -180
- package/dist/client.js +2878 -373
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +3896 -806
package/dist/client.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import * as $Util from '@alicloud/tea-util';
|
|
5
5
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
6
6
|
import * as $tea from '@alicloud/tea-typescript';
|
|
7
|
-
export declare class
|
|
7
|
+
export declare class AddMessageTemplateHeaders extends $tea.Model {
|
|
8
8
|
commonHeaders?: {
|
|
9
9
|
[key: string]: string;
|
|
10
10
|
};
|
|
@@ -20,22 +20,9 @@ export declare class DeviceControlHeaders extends $tea.Model {
|
|
|
20
20
|
[key: string]: any;
|
|
21
21
|
});
|
|
22
22
|
}
|
|
23
|
-
export declare class
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
static names(): {
|
|
27
|
-
[key: string]: string;
|
|
28
|
-
};
|
|
29
|
-
static types(): {
|
|
30
|
-
[key: string]: any;
|
|
31
|
-
};
|
|
32
|
-
constructor(map?: {
|
|
33
|
-
[key: string]: any;
|
|
34
|
-
});
|
|
35
|
-
}
|
|
36
|
-
export declare class DeviceControlShrinkRequest extends $tea.Model {
|
|
37
|
-
payloadShrink?: string;
|
|
38
|
-
userInfoShrink?: string;
|
|
23
|
+
export declare class AddMessageTemplateRequest extends $tea.Model {
|
|
24
|
+
templateDetail?: string;
|
|
25
|
+
templateName?: string;
|
|
39
26
|
static names(): {
|
|
40
27
|
[key: string]: string;
|
|
41
28
|
};
|
|
@@ -46,11 +33,11 @@ export declare class DeviceControlShrinkRequest extends $tea.Model {
|
|
|
46
33
|
[key: string]: any;
|
|
47
34
|
});
|
|
48
35
|
}
|
|
49
|
-
export declare class
|
|
36
|
+
export declare class AddMessageTemplateResponseBody extends $tea.Model {
|
|
50
37
|
code?: number;
|
|
51
38
|
message?: string;
|
|
52
39
|
requestId?: string;
|
|
53
|
-
result?:
|
|
40
|
+
result?: number;
|
|
54
41
|
static names(): {
|
|
55
42
|
[key: string]: string;
|
|
56
43
|
};
|
|
@@ -61,12 +48,12 @@ export declare class DeviceControlResponseBody extends $tea.Model {
|
|
|
61
48
|
[key: string]: any;
|
|
62
49
|
});
|
|
63
50
|
}
|
|
64
|
-
export declare class
|
|
51
|
+
export declare class AddMessageTemplateResponse extends $tea.Model {
|
|
65
52
|
headers: {
|
|
66
53
|
[key: string]: string;
|
|
67
54
|
};
|
|
68
55
|
statusCode: number;
|
|
69
|
-
body:
|
|
56
|
+
body: AddMessageTemplateResponseBody;
|
|
70
57
|
static names(): {
|
|
71
58
|
[key: string]: string;
|
|
72
59
|
};
|
|
@@ -77,7 +64,7 @@ export declare class DeviceControlResponse extends $tea.Model {
|
|
|
77
64
|
[key: string]: any;
|
|
78
65
|
});
|
|
79
66
|
}
|
|
80
|
-
export declare class
|
|
67
|
+
export declare class BatchAddHotelRoomHeaders extends $tea.Model {
|
|
81
68
|
commonHeaders?: {
|
|
82
69
|
[key: string]: string;
|
|
83
70
|
};
|
|
@@ -93,8 +80,9 @@ export declare class GetHotelHomeBackImageAndModesHeaders extends $tea.Model {
|
|
|
93
80
|
[key: string]: any;
|
|
94
81
|
});
|
|
95
82
|
}
|
|
96
|
-
export declare class
|
|
97
|
-
|
|
83
|
+
export declare class BatchAddHotelRoomRequest extends $tea.Model {
|
|
84
|
+
hotelId?: string;
|
|
85
|
+
roomNoList?: string[];
|
|
98
86
|
static names(): {
|
|
99
87
|
[key: string]: string;
|
|
100
88
|
};
|
|
@@ -105,8 +93,9 @@ export declare class GetHotelHomeBackImageAndModesRequest extends $tea.Model {
|
|
|
105
93
|
[key: string]: any;
|
|
106
94
|
});
|
|
107
95
|
}
|
|
108
|
-
export declare class
|
|
109
|
-
|
|
96
|
+
export declare class BatchAddHotelRoomShrinkRequest extends $tea.Model {
|
|
97
|
+
hotelId?: string;
|
|
98
|
+
roomNoListShrink?: string;
|
|
110
99
|
static names(): {
|
|
111
100
|
[key: string]: string;
|
|
112
101
|
};
|
|
@@ -117,11 +106,11 @@ export declare class GetHotelHomeBackImageAndModesShrinkRequest extends $tea.Mod
|
|
|
117
106
|
[key: string]: any;
|
|
118
107
|
});
|
|
119
108
|
}
|
|
120
|
-
export declare class
|
|
109
|
+
export declare class BatchAddHotelRoomResponseBody extends $tea.Model {
|
|
121
110
|
code?: number;
|
|
122
111
|
message?: string;
|
|
123
112
|
requestId?: string;
|
|
124
|
-
result?:
|
|
113
|
+
result?: boolean;
|
|
125
114
|
static names(): {
|
|
126
115
|
[key: string]: string;
|
|
127
116
|
};
|
|
@@ -132,12 +121,12 @@ export declare class GetHotelHomeBackImageAndModesResponseBody extends $tea.Mode
|
|
|
132
121
|
[key: string]: any;
|
|
133
122
|
});
|
|
134
123
|
}
|
|
135
|
-
export declare class
|
|
124
|
+
export declare class BatchAddHotelRoomResponse extends $tea.Model {
|
|
136
125
|
headers: {
|
|
137
126
|
[key: string]: string;
|
|
138
127
|
};
|
|
139
128
|
statusCode: number;
|
|
140
|
-
body:
|
|
129
|
+
body: BatchAddHotelRoomResponseBody;
|
|
141
130
|
static names(): {
|
|
142
131
|
[key: string]: string;
|
|
143
132
|
};
|
|
@@ -148,7 +137,7 @@ export declare class GetHotelHomeBackImageAndModesResponse extends $tea.Model {
|
|
|
148
137
|
[key: string]: any;
|
|
149
138
|
});
|
|
150
139
|
}
|
|
151
|
-
export declare class
|
|
140
|
+
export declare class BatchDeleteHotelRoomHeaders extends $tea.Model {
|
|
152
141
|
commonHeaders?: {
|
|
153
142
|
[key: string]: string;
|
|
154
143
|
};
|
|
@@ -164,8 +153,9 @@ export declare class GetHotelOrderDetailHeaders extends $tea.Model {
|
|
|
164
153
|
[key: string]: any;
|
|
165
154
|
});
|
|
166
155
|
}
|
|
167
|
-
export declare class
|
|
168
|
-
|
|
156
|
+
export declare class BatchDeleteHotelRoomRequest extends $tea.Model {
|
|
157
|
+
hotelId?: string;
|
|
158
|
+
roomNoList?: string[];
|
|
169
159
|
static names(): {
|
|
170
160
|
[key: string]: string;
|
|
171
161
|
};
|
|
@@ -176,8 +166,9 @@ export declare class GetHotelOrderDetailRequest extends $tea.Model {
|
|
|
176
166
|
[key: string]: any;
|
|
177
167
|
});
|
|
178
168
|
}
|
|
179
|
-
export declare class
|
|
180
|
-
|
|
169
|
+
export declare class BatchDeleteHotelRoomShrinkRequest extends $tea.Model {
|
|
170
|
+
hotelId?: string;
|
|
171
|
+
roomNoListShrink?: string;
|
|
181
172
|
static names(): {
|
|
182
173
|
[key: string]: string;
|
|
183
174
|
};
|
|
@@ -188,11 +179,11 @@ export declare class GetHotelOrderDetailShrinkRequest extends $tea.Model {
|
|
|
188
179
|
[key: string]: any;
|
|
189
180
|
});
|
|
190
181
|
}
|
|
191
|
-
export declare class
|
|
182
|
+
export declare class BatchDeleteHotelRoomResponseBody extends $tea.Model {
|
|
192
183
|
code?: number;
|
|
193
184
|
message?: string;
|
|
194
185
|
requestId?: string;
|
|
195
|
-
result?:
|
|
186
|
+
result?: boolean;
|
|
196
187
|
static names(): {
|
|
197
188
|
[key: string]: string;
|
|
198
189
|
};
|
|
@@ -203,12 +194,12 @@ export declare class GetHotelOrderDetailResponseBody extends $tea.Model {
|
|
|
203
194
|
[key: string]: any;
|
|
204
195
|
});
|
|
205
196
|
}
|
|
206
|
-
export declare class
|
|
197
|
+
export declare class BatchDeleteHotelRoomResponse extends $tea.Model {
|
|
207
198
|
headers: {
|
|
208
199
|
[key: string]: string;
|
|
209
200
|
};
|
|
210
201
|
statusCode: number;
|
|
211
|
-
body:
|
|
202
|
+
body: BatchDeleteHotelRoomResponseBody;
|
|
212
203
|
static names(): {
|
|
213
204
|
[key: string]: string;
|
|
214
205
|
};
|
|
@@ -219,7 +210,7 @@ export declare class GetHotelOrderDetailResponse extends $tea.Model {
|
|
|
219
210
|
[key: string]: any;
|
|
220
211
|
});
|
|
221
212
|
}
|
|
222
|
-
export declare class
|
|
213
|
+
export declare class CreateHotelAlarmHeaders extends $tea.Model {
|
|
223
214
|
commonHeaders?: {
|
|
224
215
|
[key: string]: string;
|
|
225
216
|
};
|
|
@@ -235,8 +226,11 @@ export declare class GetHotelSampleUtterancesHeaders extends $tea.Model {
|
|
|
235
226
|
[key: string]: any;
|
|
236
227
|
});
|
|
237
228
|
}
|
|
238
|
-
export declare class
|
|
239
|
-
|
|
229
|
+
export declare class CreateHotelAlarmRequest extends $tea.Model {
|
|
230
|
+
hotelId?: string;
|
|
231
|
+
musicType?: string;
|
|
232
|
+
rooms?: string[];
|
|
233
|
+
scheduleInfo?: CreateHotelAlarmRequestScheduleInfo;
|
|
240
234
|
static names(): {
|
|
241
235
|
[key: string]: string;
|
|
242
236
|
};
|
|
@@ -247,8 +241,11 @@ export declare class GetHotelSampleUtterancesRequest extends $tea.Model {
|
|
|
247
241
|
[key: string]: any;
|
|
248
242
|
});
|
|
249
243
|
}
|
|
250
|
-
export declare class
|
|
251
|
-
|
|
244
|
+
export declare class CreateHotelAlarmShrinkRequest extends $tea.Model {
|
|
245
|
+
hotelId?: string;
|
|
246
|
+
musicType?: string;
|
|
247
|
+
roomsShrink?: string;
|
|
248
|
+
scheduleInfoShrink?: string;
|
|
252
249
|
static names(): {
|
|
253
250
|
[key: string]: string;
|
|
254
251
|
};
|
|
@@ -259,11 +256,14 @@ export declare class GetHotelSampleUtterancesShrinkRequest extends $tea.Model {
|
|
|
259
256
|
[key: string]: any;
|
|
260
257
|
});
|
|
261
258
|
}
|
|
262
|
-
export declare class
|
|
263
|
-
|
|
259
|
+
export declare class CreateHotelAlarmResponseBody extends $tea.Model {
|
|
260
|
+
extentions?: {
|
|
261
|
+
[key: string]: any;
|
|
262
|
+
};
|
|
264
263
|
message?: string;
|
|
265
264
|
requestId?: string;
|
|
266
|
-
result?:
|
|
265
|
+
result?: CreateHotelAlarmResponseBodyResult[];
|
|
266
|
+
statusCode?: number;
|
|
267
267
|
static names(): {
|
|
268
268
|
[key: string]: string;
|
|
269
269
|
};
|
|
@@ -274,12 +274,12 @@ export declare class GetHotelSampleUtterancesResponseBody extends $tea.Model {
|
|
|
274
274
|
[key: string]: any;
|
|
275
275
|
});
|
|
276
276
|
}
|
|
277
|
-
export declare class
|
|
277
|
+
export declare class CreateHotelAlarmResponse extends $tea.Model {
|
|
278
278
|
headers: {
|
|
279
279
|
[key: string]: string;
|
|
280
280
|
};
|
|
281
281
|
statusCode: number;
|
|
282
|
-
body:
|
|
282
|
+
body: CreateHotelAlarmResponseBody;
|
|
283
283
|
static names(): {
|
|
284
284
|
[key: string]: string;
|
|
285
285
|
};
|
|
@@ -290,7 +290,7 @@ export declare class GetHotelSampleUtterancesResponse extends $tea.Model {
|
|
|
290
290
|
[key: string]: any;
|
|
291
291
|
});
|
|
292
292
|
}
|
|
293
|
-
export declare class
|
|
293
|
+
export declare class DeleteHotelAlarmHeaders extends $tea.Model {
|
|
294
294
|
commonHeaders?: {
|
|
295
295
|
[key: string]: string;
|
|
296
296
|
};
|
|
@@ -306,8 +306,9 @@ export declare class GetHotelScreenSaverHeaders extends $tea.Model {
|
|
|
306
306
|
[key: string]: any;
|
|
307
307
|
});
|
|
308
308
|
}
|
|
309
|
-
export declare class
|
|
310
|
-
|
|
309
|
+
export declare class DeleteHotelAlarmRequest extends $tea.Model {
|
|
310
|
+
alarms?: DeleteHotelAlarmRequestAlarms[];
|
|
311
|
+
hotelId?: string;
|
|
311
312
|
static names(): {
|
|
312
313
|
[key: string]: string;
|
|
313
314
|
};
|
|
@@ -318,8 +319,9 @@ export declare class GetHotelScreenSaverRequest extends $tea.Model {
|
|
|
318
319
|
[key: string]: any;
|
|
319
320
|
});
|
|
320
321
|
}
|
|
321
|
-
export declare class
|
|
322
|
-
|
|
322
|
+
export declare class DeleteHotelAlarmShrinkRequest extends $tea.Model {
|
|
323
|
+
alarmsShrink?: string;
|
|
324
|
+
hotelId?: string;
|
|
323
325
|
static names(): {
|
|
324
326
|
[key: string]: string;
|
|
325
327
|
};
|
|
@@ -330,11 +332,14 @@ export declare class GetHotelScreenSaverShrinkRequest extends $tea.Model {
|
|
|
330
332
|
[key: string]: any;
|
|
331
333
|
});
|
|
332
334
|
}
|
|
333
|
-
export declare class
|
|
334
|
-
|
|
335
|
+
export declare class DeleteHotelAlarmResponseBody extends $tea.Model {
|
|
336
|
+
extentions?: {
|
|
337
|
+
[key: string]: any;
|
|
338
|
+
};
|
|
335
339
|
message?: string;
|
|
336
340
|
requestId?: string;
|
|
337
|
-
result?:
|
|
341
|
+
result?: number;
|
|
342
|
+
statusCode?: number;
|
|
338
343
|
static names(): {
|
|
339
344
|
[key: string]: string;
|
|
340
345
|
};
|
|
@@ -345,12 +350,12 @@ export declare class GetHotelScreenSaverResponseBody extends $tea.Model {
|
|
|
345
350
|
[key: string]: any;
|
|
346
351
|
});
|
|
347
352
|
}
|
|
348
|
-
export declare class
|
|
353
|
+
export declare class DeleteHotelAlarmResponse extends $tea.Model {
|
|
349
354
|
headers: {
|
|
350
355
|
[key: string]: string;
|
|
351
356
|
};
|
|
352
357
|
statusCode: number;
|
|
353
|
-
body:
|
|
358
|
+
body: DeleteHotelAlarmResponseBody;
|
|
354
359
|
static names(): {
|
|
355
360
|
[key: string]: string;
|
|
356
361
|
};
|
|
@@ -361,7 +366,7 @@ export declare class GetHotelScreenSaverResponse extends $tea.Model {
|
|
|
361
366
|
[key: string]: any;
|
|
362
367
|
});
|
|
363
368
|
}
|
|
364
|
-
export declare class
|
|
369
|
+
export declare class DeviceControlHeaders extends $tea.Model {
|
|
365
370
|
commonHeaders?: {
|
|
366
371
|
[key: string]: string;
|
|
367
372
|
};
|
|
@@ -377,8 +382,9 @@ export declare class ListHotelControlDeviceHeaders extends $tea.Model {
|
|
|
377
382
|
[key: string]: any;
|
|
378
383
|
});
|
|
379
384
|
}
|
|
380
|
-
export declare class
|
|
381
|
-
|
|
385
|
+
export declare class DeviceControlRequest extends $tea.Model {
|
|
386
|
+
payload?: DeviceControlRequestPayload;
|
|
387
|
+
userInfo?: DeviceControlRequestUserInfo;
|
|
382
388
|
static names(): {
|
|
383
389
|
[key: string]: string;
|
|
384
390
|
};
|
|
@@ -389,7 +395,8 @@ export declare class ListHotelControlDeviceRequest extends $tea.Model {
|
|
|
389
395
|
[key: string]: any;
|
|
390
396
|
});
|
|
391
397
|
}
|
|
392
|
-
export declare class
|
|
398
|
+
export declare class DeviceControlShrinkRequest extends $tea.Model {
|
|
399
|
+
payloadShrink?: string;
|
|
393
400
|
userInfoShrink?: string;
|
|
394
401
|
static names(): {
|
|
395
402
|
[key: string]: string;
|
|
@@ -401,13 +408,11 @@ export declare class ListHotelControlDeviceShrinkRequest extends $tea.Model {
|
|
|
401
408
|
[key: string]: any;
|
|
402
409
|
});
|
|
403
410
|
}
|
|
404
|
-
export declare class
|
|
411
|
+
export declare class DeviceControlResponseBody extends $tea.Model {
|
|
405
412
|
code?: number;
|
|
406
413
|
message?: string;
|
|
407
414
|
requestId?: string;
|
|
408
|
-
result?:
|
|
409
|
-
[key: string]: string;
|
|
410
|
-
}[];
|
|
415
|
+
result?: DeviceControlResponseBodyResult;
|
|
411
416
|
static names(): {
|
|
412
417
|
[key: string]: string;
|
|
413
418
|
};
|
|
@@ -418,12 +423,12 @@ export declare class ListHotelControlDeviceResponseBody extends $tea.Model {
|
|
|
418
423
|
[key: string]: any;
|
|
419
424
|
});
|
|
420
425
|
}
|
|
421
|
-
export declare class
|
|
426
|
+
export declare class DeviceControlResponse extends $tea.Model {
|
|
422
427
|
headers: {
|
|
423
428
|
[key: string]: string;
|
|
424
429
|
};
|
|
425
430
|
statusCode: number;
|
|
426
|
-
body:
|
|
431
|
+
body: DeviceControlResponseBody;
|
|
427
432
|
static names(): {
|
|
428
433
|
[key: string]: string;
|
|
429
434
|
};
|
|
@@ -434,7 +439,7 @@ export declare class ListHotelControlDeviceResponse extends $tea.Model {
|
|
|
434
439
|
[key: string]: any;
|
|
435
440
|
});
|
|
436
441
|
}
|
|
437
|
-
export declare class
|
|
442
|
+
export declare class GetHotelHomeBackImageAndModesHeaders extends $tea.Model {
|
|
438
443
|
commonHeaders?: {
|
|
439
444
|
[key: string]: string;
|
|
440
445
|
};
|
|
@@ -450,9 +455,8 @@ export declare class ListHotelOrderHeaders extends $tea.Model {
|
|
|
450
455
|
[key: string]: any;
|
|
451
456
|
});
|
|
452
457
|
}
|
|
453
|
-
export declare class
|
|
454
|
-
|
|
455
|
-
userInfo?: ListHotelOrderRequestUserInfo;
|
|
458
|
+
export declare class GetHotelHomeBackImageAndModesRequest extends $tea.Model {
|
|
459
|
+
userInfo?: GetHotelHomeBackImageAndModesRequestUserInfo;
|
|
456
460
|
static names(): {
|
|
457
461
|
[key: string]: string;
|
|
458
462
|
};
|
|
@@ -463,8 +467,7 @@ export declare class ListHotelOrderRequest extends $tea.Model {
|
|
|
463
467
|
[key: string]: any;
|
|
464
468
|
});
|
|
465
469
|
}
|
|
466
|
-
export declare class
|
|
467
|
-
payloadShrink?: string;
|
|
470
|
+
export declare class GetHotelHomeBackImageAndModesShrinkRequest extends $tea.Model {
|
|
468
471
|
userInfoShrink?: string;
|
|
469
472
|
static names(): {
|
|
470
473
|
[key: string]: string;
|
|
@@ -476,12 +479,11 @@ export declare class ListHotelOrderShrinkRequest extends $tea.Model {
|
|
|
476
479
|
[key: string]: any;
|
|
477
480
|
});
|
|
478
481
|
}
|
|
479
|
-
export declare class
|
|
482
|
+
export declare class GetHotelHomeBackImageAndModesResponseBody extends $tea.Model {
|
|
480
483
|
code?: number;
|
|
481
484
|
message?: string;
|
|
482
|
-
page?: ListHotelOrderResponseBodyPage;
|
|
483
485
|
requestId?: string;
|
|
484
|
-
result?:
|
|
486
|
+
result?: GetHotelHomeBackImageAndModesResponseBodyResult;
|
|
485
487
|
static names(): {
|
|
486
488
|
[key: string]: string;
|
|
487
489
|
};
|
|
@@ -492,12 +494,12 @@ export declare class ListHotelOrderResponseBody extends $tea.Model {
|
|
|
492
494
|
[key: string]: any;
|
|
493
495
|
});
|
|
494
496
|
}
|
|
495
|
-
export declare class
|
|
497
|
+
export declare class GetHotelHomeBackImageAndModesResponse extends $tea.Model {
|
|
496
498
|
headers: {
|
|
497
499
|
[key: string]: string;
|
|
498
500
|
};
|
|
499
501
|
statusCode: number;
|
|
500
|
-
body:
|
|
502
|
+
body: GetHotelHomeBackImageAndModesResponseBody;
|
|
501
503
|
static names(): {
|
|
502
504
|
[key: string]: string;
|
|
503
505
|
};
|
|
@@ -508,7 +510,7 @@ export declare class ListHotelOrderResponse extends $tea.Model {
|
|
|
508
510
|
[key: string]: any;
|
|
509
511
|
});
|
|
510
512
|
}
|
|
511
|
-
export declare class
|
|
513
|
+
export declare class GetHotelNoticeHeaders extends $tea.Model {
|
|
512
514
|
commonHeaders?: {
|
|
513
515
|
[key: string]: string;
|
|
514
516
|
};
|
|
@@ -524,9 +526,8 @@ export declare class ListHotelSceneItemHeaders extends $tea.Model {
|
|
|
524
526
|
[key: string]: any;
|
|
525
527
|
});
|
|
526
528
|
}
|
|
527
|
-
export declare class
|
|
528
|
-
|
|
529
|
-
userInfo?: ListHotelSceneItemRequestUserInfo;
|
|
529
|
+
export declare class GetHotelNoticeRequest extends $tea.Model {
|
|
530
|
+
userInfo?: GetHotelNoticeRequestUserInfo;
|
|
530
531
|
static names(): {
|
|
531
532
|
[key: string]: string;
|
|
532
533
|
};
|
|
@@ -537,8 +538,7 @@ export declare class ListHotelSceneItemRequest extends $tea.Model {
|
|
|
537
538
|
[key: string]: any;
|
|
538
539
|
});
|
|
539
540
|
}
|
|
540
|
-
export declare class
|
|
541
|
-
payloadShrink?: string;
|
|
541
|
+
export declare class GetHotelNoticeShrinkRequest extends $tea.Model {
|
|
542
542
|
userInfoShrink?: string;
|
|
543
543
|
static names(): {
|
|
544
544
|
[key: string]: string;
|
|
@@ -550,12 +550,11 @@ export declare class ListHotelSceneItemShrinkRequest extends $tea.Model {
|
|
|
550
550
|
[key: string]: any;
|
|
551
551
|
});
|
|
552
552
|
}
|
|
553
|
-
export declare class
|
|
553
|
+
export declare class GetHotelNoticeResponseBody extends $tea.Model {
|
|
554
554
|
code?: number;
|
|
555
555
|
message?: string;
|
|
556
|
-
page?: ListHotelSceneItemResponseBodyPage;
|
|
557
556
|
requestId?: string;
|
|
558
|
-
result?:
|
|
557
|
+
result?: string;
|
|
559
558
|
static names(): {
|
|
560
559
|
[key: string]: string;
|
|
561
560
|
};
|
|
@@ -566,12 +565,12 @@ export declare class ListHotelSceneItemResponseBody extends $tea.Model {
|
|
|
566
565
|
[key: string]: any;
|
|
567
566
|
});
|
|
568
567
|
}
|
|
569
|
-
export declare class
|
|
568
|
+
export declare class GetHotelNoticeResponse extends $tea.Model {
|
|
570
569
|
headers: {
|
|
571
570
|
[key: string]: string;
|
|
572
571
|
};
|
|
573
572
|
statusCode: number;
|
|
574
|
-
body:
|
|
573
|
+
body: GetHotelNoticeResponseBody;
|
|
575
574
|
static names(): {
|
|
576
575
|
[key: string]: string;
|
|
577
576
|
};
|
|
@@ -582,7 +581,7 @@ export declare class ListHotelSceneItemResponse extends $tea.Model {
|
|
|
582
581
|
[key: string]: any;
|
|
583
582
|
});
|
|
584
583
|
}
|
|
585
|
-
export declare class
|
|
584
|
+
export declare class GetHotelOrderDetailHeaders extends $tea.Model {
|
|
586
585
|
commonHeaders?: {
|
|
587
586
|
[key: string]: string;
|
|
588
587
|
};
|
|
@@ -598,8 +597,8 @@ export declare class ListHotelServiceCategoryHeaders extends $tea.Model {
|
|
|
598
597
|
[key: string]: any;
|
|
599
598
|
});
|
|
600
599
|
}
|
|
601
|
-
export declare class
|
|
602
|
-
payload?:
|
|
600
|
+
export declare class GetHotelOrderDetailRequest extends $tea.Model {
|
|
601
|
+
payload?: GetHotelOrderDetailRequestPayload;
|
|
603
602
|
static names(): {
|
|
604
603
|
[key: string]: string;
|
|
605
604
|
};
|
|
@@ -610,7 +609,7 @@ export declare class ListHotelServiceCategoryRequest extends $tea.Model {
|
|
|
610
609
|
[key: string]: any;
|
|
611
610
|
});
|
|
612
611
|
}
|
|
613
|
-
export declare class
|
|
612
|
+
export declare class GetHotelOrderDetailShrinkRequest extends $tea.Model {
|
|
614
613
|
payloadShrink?: string;
|
|
615
614
|
static names(): {
|
|
616
615
|
[key: string]: string;
|
|
@@ -622,11 +621,11 @@ export declare class ListHotelServiceCategoryShrinkRequest extends $tea.Model {
|
|
|
622
621
|
[key: string]: any;
|
|
623
622
|
});
|
|
624
623
|
}
|
|
625
|
-
export declare class
|
|
624
|
+
export declare class GetHotelOrderDetailResponseBody extends $tea.Model {
|
|
626
625
|
code?: number;
|
|
627
626
|
message?: string;
|
|
628
627
|
requestId?: string;
|
|
629
|
-
result?:
|
|
628
|
+
result?: GetHotelOrderDetailResponseBodyResult[];
|
|
630
629
|
static names(): {
|
|
631
630
|
[key: string]: string;
|
|
632
631
|
};
|
|
@@ -637,12 +636,12 @@ export declare class ListHotelServiceCategoryResponseBody extends $tea.Model {
|
|
|
637
636
|
[key: string]: any;
|
|
638
637
|
});
|
|
639
638
|
}
|
|
640
|
-
export declare class
|
|
639
|
+
export declare class GetHotelOrderDetailResponse extends $tea.Model {
|
|
641
640
|
headers: {
|
|
642
641
|
[key: string]: string;
|
|
643
642
|
};
|
|
644
643
|
statusCode: number;
|
|
645
|
-
body:
|
|
644
|
+
body: GetHotelOrderDetailResponseBody;
|
|
646
645
|
static names(): {
|
|
647
646
|
[key: string]: string;
|
|
648
647
|
};
|
|
@@ -653,7 +652,7 @@ export declare class ListHotelServiceCategoryResponse extends $tea.Model {
|
|
|
653
652
|
[key: string]: any;
|
|
654
653
|
});
|
|
655
654
|
}
|
|
656
|
-
export declare class
|
|
655
|
+
export declare class GetHotelRoomDeviceHeaders extends $tea.Model {
|
|
657
656
|
commonHeaders?: {
|
|
658
657
|
[key: string]: string;
|
|
659
658
|
};
|
|
@@ -669,22 +668,9 @@ export declare class QueryDeviceStatusHeaders extends $tea.Model {
|
|
|
669
668
|
[key: string]: any;
|
|
670
669
|
});
|
|
671
670
|
}
|
|
672
|
-
export declare class
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
static names(): {
|
|
676
|
-
[key: string]: string;
|
|
677
|
-
};
|
|
678
|
-
static types(): {
|
|
679
|
-
[key: string]: any;
|
|
680
|
-
};
|
|
681
|
-
constructor(map?: {
|
|
682
|
-
[key: string]: any;
|
|
683
|
-
});
|
|
684
|
-
}
|
|
685
|
-
export declare class QueryDeviceStatusShrinkRequest extends $tea.Model {
|
|
686
|
-
payloadShrink?: string;
|
|
687
|
-
userInfoShrink?: string;
|
|
671
|
+
export declare class GetHotelRoomDeviceRequest extends $tea.Model {
|
|
672
|
+
hotelId?: string;
|
|
673
|
+
roomNo?: string;
|
|
688
674
|
static names(): {
|
|
689
675
|
[key: string]: string;
|
|
690
676
|
};
|
|
@@ -695,13 +681,11 @@ export declare class QueryDeviceStatusShrinkRequest extends $tea.Model {
|
|
|
695
681
|
[key: string]: any;
|
|
696
682
|
});
|
|
697
683
|
}
|
|
698
|
-
export declare class
|
|
684
|
+
export declare class GetHotelRoomDeviceResponseBody extends $tea.Model {
|
|
699
685
|
code?: number;
|
|
700
686
|
message?: string;
|
|
701
687
|
requestId?: string;
|
|
702
|
-
result?:
|
|
703
|
-
[key: string]: string;
|
|
704
|
-
}[];
|
|
688
|
+
result?: GetHotelRoomDeviceResponseBodyResult[];
|
|
705
689
|
static names(): {
|
|
706
690
|
[key: string]: string;
|
|
707
691
|
};
|
|
@@ -712,12 +696,12 @@ export declare class QueryDeviceStatusResponseBody extends $tea.Model {
|
|
|
712
696
|
[key: string]: any;
|
|
713
697
|
});
|
|
714
698
|
}
|
|
715
|
-
export declare class
|
|
699
|
+
export declare class GetHotelRoomDeviceResponse extends $tea.Model {
|
|
716
700
|
headers: {
|
|
717
701
|
[key: string]: string;
|
|
718
702
|
};
|
|
719
703
|
statusCode: number;
|
|
720
|
-
body:
|
|
704
|
+
body: GetHotelRoomDeviceResponseBody;
|
|
721
705
|
static names(): {
|
|
722
706
|
[key: string]: string;
|
|
723
707
|
};
|
|
@@ -728,7 +712,7 @@ export declare class QueryDeviceStatusResponse extends $tea.Model {
|
|
|
728
712
|
[key: string]: any;
|
|
729
713
|
});
|
|
730
714
|
}
|
|
731
|
-
export declare class
|
|
715
|
+
export declare class GetHotelSampleUtterancesHeaders extends $tea.Model {
|
|
732
716
|
commonHeaders?: {
|
|
733
717
|
[key: string]: string;
|
|
734
718
|
};
|
|
@@ -744,8 +728,8 @@ export declare class QueryHotelProductHeaders extends $tea.Model {
|
|
|
744
728
|
[key: string]: any;
|
|
745
729
|
});
|
|
746
730
|
}
|
|
747
|
-
export declare class
|
|
748
|
-
userInfo?:
|
|
731
|
+
export declare class GetHotelSampleUtterancesRequest extends $tea.Model {
|
|
732
|
+
userInfo?: GetHotelSampleUtterancesRequestUserInfo;
|
|
749
733
|
static names(): {
|
|
750
734
|
[key: string]: string;
|
|
751
735
|
};
|
|
@@ -756,7 +740,7 @@ export declare class QueryHotelProductRequest extends $tea.Model {
|
|
|
756
740
|
[key: string]: any;
|
|
757
741
|
});
|
|
758
742
|
}
|
|
759
|
-
export declare class
|
|
743
|
+
export declare class GetHotelSampleUtterancesShrinkRequest extends $tea.Model {
|
|
760
744
|
userInfoShrink?: string;
|
|
761
745
|
static names(): {
|
|
762
746
|
[key: string]: string;
|
|
@@ -768,11 +752,11 @@ export declare class QueryHotelProductShrinkRequest extends $tea.Model {
|
|
|
768
752
|
[key: string]: any;
|
|
769
753
|
});
|
|
770
754
|
}
|
|
771
|
-
export declare class
|
|
755
|
+
export declare class GetHotelSampleUtterancesResponseBody extends $tea.Model {
|
|
772
756
|
code?: number;
|
|
773
757
|
message?: string;
|
|
774
758
|
requestId?: string;
|
|
775
|
-
result?:
|
|
759
|
+
result?: string[];
|
|
776
760
|
static names(): {
|
|
777
761
|
[key: string]: string;
|
|
778
762
|
};
|
|
@@ -783,12 +767,12 @@ export declare class QueryHotelProductResponseBody extends $tea.Model {
|
|
|
783
767
|
[key: string]: any;
|
|
784
768
|
});
|
|
785
769
|
}
|
|
786
|
-
export declare class
|
|
770
|
+
export declare class GetHotelSampleUtterancesResponse extends $tea.Model {
|
|
787
771
|
headers: {
|
|
788
772
|
[key: string]: string;
|
|
789
773
|
};
|
|
790
774
|
statusCode: number;
|
|
791
|
-
body:
|
|
775
|
+
body: GetHotelSampleUtterancesResponseBody;
|
|
792
776
|
static names(): {
|
|
793
777
|
[key: string]: string;
|
|
794
778
|
};
|
|
@@ -799,7 +783,7 @@ export declare class QueryHotelProductResponse extends $tea.Model {
|
|
|
799
783
|
[key: string]: any;
|
|
800
784
|
});
|
|
801
785
|
}
|
|
802
|
-
export declare class
|
|
786
|
+
export declare class GetHotelScreenSaverHeaders extends $tea.Model {
|
|
803
787
|
commonHeaders?: {
|
|
804
788
|
[key: string]: string;
|
|
805
789
|
};
|
|
@@ -815,9 +799,8 @@ export declare class RoomCheckOutHeaders extends $tea.Model {
|
|
|
815
799
|
[key: string]: any;
|
|
816
800
|
});
|
|
817
801
|
}
|
|
818
|
-
export declare class
|
|
819
|
-
|
|
820
|
-
userInfo?: RoomCheckOutRequestUserInfo;
|
|
802
|
+
export declare class GetHotelScreenSaverRequest extends $tea.Model {
|
|
803
|
+
userInfo?: GetHotelScreenSaverRequestUserInfo;
|
|
821
804
|
static names(): {
|
|
822
805
|
[key: string]: string;
|
|
823
806
|
};
|
|
@@ -828,8 +811,7 @@ export declare class RoomCheckOutRequest extends $tea.Model {
|
|
|
828
811
|
[key: string]: any;
|
|
829
812
|
});
|
|
830
813
|
}
|
|
831
|
-
export declare class
|
|
832
|
-
deviceInfoShrink?: string;
|
|
814
|
+
export declare class GetHotelScreenSaverShrinkRequest extends $tea.Model {
|
|
833
815
|
userInfoShrink?: string;
|
|
834
816
|
static names(): {
|
|
835
817
|
[key: string]: string;
|
|
@@ -841,11 +823,11 @@ export declare class RoomCheckOutShrinkRequest extends $tea.Model {
|
|
|
841
823
|
[key: string]: any;
|
|
842
824
|
});
|
|
843
825
|
}
|
|
844
|
-
export declare class
|
|
826
|
+
export declare class GetHotelScreenSaverResponseBody extends $tea.Model {
|
|
845
827
|
code?: number;
|
|
846
828
|
message?: string;
|
|
847
829
|
requestId?: string;
|
|
848
|
-
result?:
|
|
830
|
+
result?: GetHotelScreenSaverResponseBodyResult;
|
|
849
831
|
static names(): {
|
|
850
832
|
[key: string]: string;
|
|
851
833
|
};
|
|
@@ -856,12 +838,12 @@ export declare class RoomCheckOutResponseBody extends $tea.Model {
|
|
|
856
838
|
[key: string]: any;
|
|
857
839
|
});
|
|
858
840
|
}
|
|
859
|
-
export declare class
|
|
841
|
+
export declare class GetHotelScreenSaverResponse extends $tea.Model {
|
|
860
842
|
headers: {
|
|
861
843
|
[key: string]: string;
|
|
862
844
|
};
|
|
863
845
|
statusCode: number;
|
|
864
|
-
body:
|
|
846
|
+
body: GetHotelScreenSaverResponseBody;
|
|
865
847
|
static names(): {
|
|
866
848
|
[key: string]: string;
|
|
867
849
|
};
|
|
@@ -872,7 +854,7 @@ export declare class RoomCheckOutResponse extends $tea.Model {
|
|
|
872
854
|
[key: string]: any;
|
|
873
855
|
});
|
|
874
856
|
}
|
|
875
|
-
export declare class
|
|
857
|
+
export declare class ImportRoomControlDevicesHeaders extends $tea.Model {
|
|
876
858
|
commonHeaders?: {
|
|
877
859
|
[key: string]: string;
|
|
878
860
|
};
|
|
@@ -888,9 +870,10 @@ export declare class SubmitHotelOrderHeaders extends $tea.Model {
|
|
|
888
870
|
[key: string]: any;
|
|
889
871
|
});
|
|
890
872
|
}
|
|
891
|
-
export declare class
|
|
892
|
-
|
|
893
|
-
|
|
873
|
+
export declare class ImportRoomControlDevicesRequest extends $tea.Model {
|
|
874
|
+
hotelId?: string;
|
|
875
|
+
locationDevices?: ImportRoomControlDevicesRequestLocationDevices[];
|
|
876
|
+
roomNo?: string;
|
|
894
877
|
static names(): {
|
|
895
878
|
[key: string]: string;
|
|
896
879
|
};
|
|
@@ -901,9 +884,10 @@ export declare class SubmitHotelOrderRequest extends $tea.Model {
|
|
|
901
884
|
[key: string]: any;
|
|
902
885
|
});
|
|
903
886
|
}
|
|
904
|
-
export declare class
|
|
905
|
-
|
|
906
|
-
|
|
887
|
+
export declare class ImportRoomControlDevicesShrinkRequest extends $tea.Model {
|
|
888
|
+
hotelId?: string;
|
|
889
|
+
locationDevicesShrink?: string;
|
|
890
|
+
roomNo?: string;
|
|
907
891
|
static names(): {
|
|
908
892
|
[key: string]: string;
|
|
909
893
|
};
|
|
@@ -914,11 +898,14 @@ export declare class SubmitHotelOrderShrinkRequest extends $tea.Model {
|
|
|
914
898
|
[key: string]: any;
|
|
915
899
|
});
|
|
916
900
|
}
|
|
917
|
-
export declare class
|
|
918
|
-
|
|
901
|
+
export declare class ImportRoomControlDevicesResponseBody extends $tea.Model {
|
|
902
|
+
extentions?: {
|
|
903
|
+
[key: string]: any;
|
|
904
|
+
};
|
|
919
905
|
message?: string;
|
|
920
906
|
requestId?: string;
|
|
921
|
-
result?:
|
|
907
|
+
result?: number;
|
|
908
|
+
statusCode?: number;
|
|
922
909
|
static names(): {
|
|
923
910
|
[key: string]: string;
|
|
924
911
|
};
|
|
@@ -929,12 +916,12 @@ export declare class SubmitHotelOrderResponseBody extends $tea.Model {
|
|
|
929
916
|
[key: string]: any;
|
|
930
917
|
});
|
|
931
918
|
}
|
|
932
|
-
export declare class
|
|
919
|
+
export declare class ImportRoomControlDevicesResponse extends $tea.Model {
|
|
933
920
|
headers: {
|
|
934
921
|
[key: string]: string;
|
|
935
922
|
};
|
|
936
923
|
statusCode: number;
|
|
937
|
-
body:
|
|
924
|
+
body: ImportRoomControlDevicesResponseBody;
|
|
938
925
|
static names(): {
|
|
939
926
|
[key: string]: string;
|
|
940
927
|
};
|
|
@@ -945,17 +932,12 @@ export declare class SubmitHotelOrderResponse extends $tea.Model {
|
|
|
945
932
|
[key: string]: any;
|
|
946
933
|
});
|
|
947
934
|
}
|
|
948
|
-
export declare class
|
|
949
|
-
|
|
950
|
-
cmd?: string;
|
|
951
|
-
current?: string;
|
|
952
|
-
device?: string;
|
|
953
|
-
deviceNumber?: string;
|
|
954
|
-
extendInfo?: string;
|
|
955
|
-
location?: string;
|
|
956
|
-
properties?: {
|
|
935
|
+
export declare class ListHotelAlarmHeaders extends $tea.Model {
|
|
936
|
+
commonHeaders?: {
|
|
957
937
|
[key: string]: string;
|
|
958
938
|
};
|
|
939
|
+
xAcsAligenieAccessToken?: string;
|
|
940
|
+
authorization?: string;
|
|
959
941
|
static names(): {
|
|
960
942
|
[key: string]: string;
|
|
961
943
|
};
|
|
@@ -966,12 +948,9 @@ export declare class DeviceControlRequestPayload extends $tea.Model {
|
|
|
966
948
|
[key: string]: any;
|
|
967
949
|
});
|
|
968
950
|
}
|
|
969
|
-
export declare class
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
id?: string;
|
|
973
|
-
idType?: string;
|
|
974
|
-
organizationId?: string;
|
|
951
|
+
export declare class ListHotelAlarmRequest extends $tea.Model {
|
|
952
|
+
hotelId?: string;
|
|
953
|
+
rooms?: string[];
|
|
975
954
|
static names(): {
|
|
976
955
|
[key: string]: string;
|
|
977
956
|
};
|
|
@@ -982,8 +961,9 @@ export declare class DeviceControlRequestUserInfo extends $tea.Model {
|
|
|
982
961
|
[key: string]: any;
|
|
983
962
|
});
|
|
984
963
|
}
|
|
985
|
-
export declare class
|
|
986
|
-
|
|
964
|
+
export declare class ListHotelAlarmShrinkRequest extends $tea.Model {
|
|
965
|
+
hotelId?: string;
|
|
966
|
+
roomsShrink?: string;
|
|
987
967
|
static names(): {
|
|
988
968
|
[key: string]: string;
|
|
989
969
|
};
|
|
@@ -994,12 +974,14 @@ export declare class DeviceControlResponseBodyResult extends $tea.Model {
|
|
|
994
974
|
[key: string]: any;
|
|
995
975
|
});
|
|
996
976
|
}
|
|
997
|
-
export declare class
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
977
|
+
export declare class ListHotelAlarmResponseBody extends $tea.Model {
|
|
978
|
+
extentions?: {
|
|
979
|
+
[key: string]: any;
|
|
980
|
+
};
|
|
981
|
+
message?: string;
|
|
982
|
+
requestId?: string;
|
|
983
|
+
result?: ListHotelAlarmResponseBodyResult[];
|
|
984
|
+
statusCode?: number;
|
|
1003
985
|
static names(): {
|
|
1004
986
|
[key: string]: string;
|
|
1005
987
|
};
|
|
@@ -1010,10 +992,12 @@ export declare class GetHotelHomeBackImageAndModesRequestUserInfo extends $tea.M
|
|
|
1010
992
|
[key: string]: any;
|
|
1011
993
|
});
|
|
1012
994
|
}
|
|
1013
|
-
export declare class
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
995
|
+
export declare class ListHotelAlarmResponse extends $tea.Model {
|
|
996
|
+
headers: {
|
|
997
|
+
[key: string]: string;
|
|
998
|
+
};
|
|
999
|
+
statusCode: number;
|
|
1000
|
+
body: ListHotelAlarmResponseBody;
|
|
1017
1001
|
static names(): {
|
|
1018
1002
|
[key: string]: string;
|
|
1019
1003
|
};
|
|
@@ -1024,7 +1008,1108 @@ export declare class GetHotelHomeBackImageAndModesResponseBodyResultModeList ext
|
|
|
1024
1008
|
[key: string]: any;
|
|
1025
1009
|
});
|
|
1026
1010
|
}
|
|
1027
|
-
export declare class
|
|
1011
|
+
export declare class ListHotelControlDeviceHeaders extends $tea.Model {
|
|
1012
|
+
commonHeaders?: {
|
|
1013
|
+
[key: string]: string;
|
|
1014
|
+
};
|
|
1015
|
+
xAcsAligenieAccessToken?: string;
|
|
1016
|
+
authorization?: string;
|
|
1017
|
+
static names(): {
|
|
1018
|
+
[key: string]: string;
|
|
1019
|
+
};
|
|
1020
|
+
static types(): {
|
|
1021
|
+
[key: string]: any;
|
|
1022
|
+
};
|
|
1023
|
+
constructor(map?: {
|
|
1024
|
+
[key: string]: any;
|
|
1025
|
+
});
|
|
1026
|
+
}
|
|
1027
|
+
export declare class ListHotelControlDeviceRequest extends $tea.Model {
|
|
1028
|
+
userInfo?: ListHotelControlDeviceRequestUserInfo;
|
|
1029
|
+
static names(): {
|
|
1030
|
+
[key: string]: string;
|
|
1031
|
+
};
|
|
1032
|
+
static types(): {
|
|
1033
|
+
[key: string]: any;
|
|
1034
|
+
};
|
|
1035
|
+
constructor(map?: {
|
|
1036
|
+
[key: string]: any;
|
|
1037
|
+
});
|
|
1038
|
+
}
|
|
1039
|
+
export declare class ListHotelControlDeviceShrinkRequest extends $tea.Model {
|
|
1040
|
+
userInfoShrink?: string;
|
|
1041
|
+
static names(): {
|
|
1042
|
+
[key: string]: string;
|
|
1043
|
+
};
|
|
1044
|
+
static types(): {
|
|
1045
|
+
[key: string]: any;
|
|
1046
|
+
};
|
|
1047
|
+
constructor(map?: {
|
|
1048
|
+
[key: string]: any;
|
|
1049
|
+
});
|
|
1050
|
+
}
|
|
1051
|
+
export declare class ListHotelControlDeviceResponseBody extends $tea.Model {
|
|
1052
|
+
code?: number;
|
|
1053
|
+
message?: string;
|
|
1054
|
+
requestId?: string;
|
|
1055
|
+
result?: {
|
|
1056
|
+
[key: string]: string;
|
|
1057
|
+
}[];
|
|
1058
|
+
static names(): {
|
|
1059
|
+
[key: string]: string;
|
|
1060
|
+
};
|
|
1061
|
+
static types(): {
|
|
1062
|
+
[key: string]: any;
|
|
1063
|
+
};
|
|
1064
|
+
constructor(map?: {
|
|
1065
|
+
[key: string]: any;
|
|
1066
|
+
});
|
|
1067
|
+
}
|
|
1068
|
+
export declare class ListHotelControlDeviceResponse extends $tea.Model {
|
|
1069
|
+
headers: {
|
|
1070
|
+
[key: string]: string;
|
|
1071
|
+
};
|
|
1072
|
+
statusCode: number;
|
|
1073
|
+
body: ListHotelControlDeviceResponseBody;
|
|
1074
|
+
static names(): {
|
|
1075
|
+
[key: string]: string;
|
|
1076
|
+
};
|
|
1077
|
+
static types(): {
|
|
1078
|
+
[key: string]: any;
|
|
1079
|
+
};
|
|
1080
|
+
constructor(map?: {
|
|
1081
|
+
[key: string]: any;
|
|
1082
|
+
});
|
|
1083
|
+
}
|
|
1084
|
+
export declare class ListHotelInfoHeaders extends $tea.Model {
|
|
1085
|
+
commonHeaders?: {
|
|
1086
|
+
[key: string]: string;
|
|
1087
|
+
};
|
|
1088
|
+
xAcsAligenieAccessToken?: string;
|
|
1089
|
+
authorization?: string;
|
|
1090
|
+
static names(): {
|
|
1091
|
+
[key: string]: string;
|
|
1092
|
+
};
|
|
1093
|
+
static types(): {
|
|
1094
|
+
[key: string]: any;
|
|
1095
|
+
};
|
|
1096
|
+
constructor(map?: {
|
|
1097
|
+
[key: string]: any;
|
|
1098
|
+
});
|
|
1099
|
+
}
|
|
1100
|
+
export declare class ListHotelInfoResponseBody extends $tea.Model {
|
|
1101
|
+
extentions?: {
|
|
1102
|
+
[key: string]: any;
|
|
1103
|
+
};
|
|
1104
|
+
message?: string;
|
|
1105
|
+
requestId?: string;
|
|
1106
|
+
result?: ListHotelInfoResponseBodyResult[];
|
|
1107
|
+
statusCode?: number;
|
|
1108
|
+
static names(): {
|
|
1109
|
+
[key: string]: string;
|
|
1110
|
+
};
|
|
1111
|
+
static types(): {
|
|
1112
|
+
[key: string]: any;
|
|
1113
|
+
};
|
|
1114
|
+
constructor(map?: {
|
|
1115
|
+
[key: string]: any;
|
|
1116
|
+
});
|
|
1117
|
+
}
|
|
1118
|
+
export declare class ListHotelInfoResponse extends $tea.Model {
|
|
1119
|
+
headers: {
|
|
1120
|
+
[key: string]: string;
|
|
1121
|
+
};
|
|
1122
|
+
statusCode: number;
|
|
1123
|
+
body: ListHotelInfoResponseBody;
|
|
1124
|
+
static names(): {
|
|
1125
|
+
[key: string]: string;
|
|
1126
|
+
};
|
|
1127
|
+
static types(): {
|
|
1128
|
+
[key: string]: any;
|
|
1129
|
+
};
|
|
1130
|
+
constructor(map?: {
|
|
1131
|
+
[key: string]: any;
|
|
1132
|
+
});
|
|
1133
|
+
}
|
|
1134
|
+
export declare class ListHotelMessageTemplateHeaders extends $tea.Model {
|
|
1135
|
+
commonHeaders?: {
|
|
1136
|
+
[key: string]: string;
|
|
1137
|
+
};
|
|
1138
|
+
xAcsAligenieAccessToken?: string;
|
|
1139
|
+
authorization?: string;
|
|
1140
|
+
static names(): {
|
|
1141
|
+
[key: string]: string;
|
|
1142
|
+
};
|
|
1143
|
+
static types(): {
|
|
1144
|
+
[key: string]: any;
|
|
1145
|
+
};
|
|
1146
|
+
constructor(map?: {
|
|
1147
|
+
[key: string]: any;
|
|
1148
|
+
});
|
|
1149
|
+
}
|
|
1150
|
+
export declare class ListHotelMessageTemplateResponseBody extends $tea.Model {
|
|
1151
|
+
code?: number;
|
|
1152
|
+
message?: string;
|
|
1153
|
+
requestId?: string;
|
|
1154
|
+
result?: ListHotelMessageTemplateResponseBodyResult[];
|
|
1155
|
+
static names(): {
|
|
1156
|
+
[key: string]: string;
|
|
1157
|
+
};
|
|
1158
|
+
static types(): {
|
|
1159
|
+
[key: string]: any;
|
|
1160
|
+
};
|
|
1161
|
+
constructor(map?: {
|
|
1162
|
+
[key: string]: any;
|
|
1163
|
+
});
|
|
1164
|
+
}
|
|
1165
|
+
export declare class ListHotelMessageTemplateResponse extends $tea.Model {
|
|
1166
|
+
headers: {
|
|
1167
|
+
[key: string]: string;
|
|
1168
|
+
};
|
|
1169
|
+
statusCode: number;
|
|
1170
|
+
body: ListHotelMessageTemplateResponseBody;
|
|
1171
|
+
static names(): {
|
|
1172
|
+
[key: string]: string;
|
|
1173
|
+
};
|
|
1174
|
+
static types(): {
|
|
1175
|
+
[key: string]: any;
|
|
1176
|
+
};
|
|
1177
|
+
constructor(map?: {
|
|
1178
|
+
[key: string]: any;
|
|
1179
|
+
});
|
|
1180
|
+
}
|
|
1181
|
+
export declare class ListHotelOrderHeaders extends $tea.Model {
|
|
1182
|
+
commonHeaders?: {
|
|
1183
|
+
[key: string]: string;
|
|
1184
|
+
};
|
|
1185
|
+
xAcsAligenieAccessToken?: string;
|
|
1186
|
+
authorization?: string;
|
|
1187
|
+
static names(): {
|
|
1188
|
+
[key: string]: string;
|
|
1189
|
+
};
|
|
1190
|
+
static types(): {
|
|
1191
|
+
[key: string]: any;
|
|
1192
|
+
};
|
|
1193
|
+
constructor(map?: {
|
|
1194
|
+
[key: string]: any;
|
|
1195
|
+
});
|
|
1196
|
+
}
|
|
1197
|
+
export declare class ListHotelOrderRequest extends $tea.Model {
|
|
1198
|
+
payload?: ListHotelOrderRequestPayload;
|
|
1199
|
+
userInfo?: ListHotelOrderRequestUserInfo;
|
|
1200
|
+
static names(): {
|
|
1201
|
+
[key: string]: string;
|
|
1202
|
+
};
|
|
1203
|
+
static types(): {
|
|
1204
|
+
[key: string]: any;
|
|
1205
|
+
};
|
|
1206
|
+
constructor(map?: {
|
|
1207
|
+
[key: string]: any;
|
|
1208
|
+
});
|
|
1209
|
+
}
|
|
1210
|
+
export declare class ListHotelOrderShrinkRequest extends $tea.Model {
|
|
1211
|
+
payloadShrink?: string;
|
|
1212
|
+
userInfoShrink?: string;
|
|
1213
|
+
static names(): {
|
|
1214
|
+
[key: string]: string;
|
|
1215
|
+
};
|
|
1216
|
+
static types(): {
|
|
1217
|
+
[key: string]: any;
|
|
1218
|
+
};
|
|
1219
|
+
constructor(map?: {
|
|
1220
|
+
[key: string]: any;
|
|
1221
|
+
});
|
|
1222
|
+
}
|
|
1223
|
+
export declare class ListHotelOrderResponseBody extends $tea.Model {
|
|
1224
|
+
code?: number;
|
|
1225
|
+
message?: string;
|
|
1226
|
+
page?: ListHotelOrderResponseBodyPage;
|
|
1227
|
+
requestId?: string;
|
|
1228
|
+
result?: ListHotelOrderResponseBodyResult[];
|
|
1229
|
+
static names(): {
|
|
1230
|
+
[key: string]: string;
|
|
1231
|
+
};
|
|
1232
|
+
static types(): {
|
|
1233
|
+
[key: string]: any;
|
|
1234
|
+
};
|
|
1235
|
+
constructor(map?: {
|
|
1236
|
+
[key: string]: any;
|
|
1237
|
+
});
|
|
1238
|
+
}
|
|
1239
|
+
export declare class ListHotelOrderResponse extends $tea.Model {
|
|
1240
|
+
headers: {
|
|
1241
|
+
[key: string]: string;
|
|
1242
|
+
};
|
|
1243
|
+
statusCode: number;
|
|
1244
|
+
body: ListHotelOrderResponseBody;
|
|
1245
|
+
static names(): {
|
|
1246
|
+
[key: string]: string;
|
|
1247
|
+
};
|
|
1248
|
+
static types(): {
|
|
1249
|
+
[key: string]: any;
|
|
1250
|
+
};
|
|
1251
|
+
constructor(map?: {
|
|
1252
|
+
[key: string]: any;
|
|
1253
|
+
});
|
|
1254
|
+
}
|
|
1255
|
+
export declare class ListHotelRoomsHeaders extends $tea.Model {
|
|
1256
|
+
commonHeaders?: {
|
|
1257
|
+
[key: string]: string;
|
|
1258
|
+
};
|
|
1259
|
+
xAcsAligenieAccessToken?: string;
|
|
1260
|
+
authorization?: string;
|
|
1261
|
+
static names(): {
|
|
1262
|
+
[key: string]: string;
|
|
1263
|
+
};
|
|
1264
|
+
static types(): {
|
|
1265
|
+
[key: string]: any;
|
|
1266
|
+
};
|
|
1267
|
+
constructor(map?: {
|
|
1268
|
+
[key: string]: any;
|
|
1269
|
+
});
|
|
1270
|
+
}
|
|
1271
|
+
export declare class ListHotelRoomsRequest extends $tea.Model {
|
|
1272
|
+
hotelId?: string;
|
|
1273
|
+
static names(): {
|
|
1274
|
+
[key: string]: string;
|
|
1275
|
+
};
|
|
1276
|
+
static types(): {
|
|
1277
|
+
[key: string]: any;
|
|
1278
|
+
};
|
|
1279
|
+
constructor(map?: {
|
|
1280
|
+
[key: string]: any;
|
|
1281
|
+
});
|
|
1282
|
+
}
|
|
1283
|
+
export declare class ListHotelRoomsResponseBody extends $tea.Model {
|
|
1284
|
+
code?: number;
|
|
1285
|
+
message?: string;
|
|
1286
|
+
requestId?: string;
|
|
1287
|
+
result?: ListHotelRoomsResponseBodyResult[];
|
|
1288
|
+
static names(): {
|
|
1289
|
+
[key: string]: string;
|
|
1290
|
+
};
|
|
1291
|
+
static types(): {
|
|
1292
|
+
[key: string]: any;
|
|
1293
|
+
};
|
|
1294
|
+
constructor(map?: {
|
|
1295
|
+
[key: string]: any;
|
|
1296
|
+
});
|
|
1297
|
+
}
|
|
1298
|
+
export declare class ListHotelRoomsResponse extends $tea.Model {
|
|
1299
|
+
headers: {
|
|
1300
|
+
[key: string]: string;
|
|
1301
|
+
};
|
|
1302
|
+
statusCode: number;
|
|
1303
|
+
body: ListHotelRoomsResponseBody;
|
|
1304
|
+
static names(): {
|
|
1305
|
+
[key: string]: string;
|
|
1306
|
+
};
|
|
1307
|
+
static types(): {
|
|
1308
|
+
[key: string]: any;
|
|
1309
|
+
};
|
|
1310
|
+
constructor(map?: {
|
|
1311
|
+
[key: string]: any;
|
|
1312
|
+
});
|
|
1313
|
+
}
|
|
1314
|
+
export declare class ListHotelSceneItemHeaders extends $tea.Model {
|
|
1315
|
+
commonHeaders?: {
|
|
1316
|
+
[key: string]: string;
|
|
1317
|
+
};
|
|
1318
|
+
xAcsAligenieAccessToken?: string;
|
|
1319
|
+
authorization?: string;
|
|
1320
|
+
static names(): {
|
|
1321
|
+
[key: string]: string;
|
|
1322
|
+
};
|
|
1323
|
+
static types(): {
|
|
1324
|
+
[key: string]: any;
|
|
1325
|
+
};
|
|
1326
|
+
constructor(map?: {
|
|
1327
|
+
[key: string]: any;
|
|
1328
|
+
});
|
|
1329
|
+
}
|
|
1330
|
+
export declare class ListHotelSceneItemRequest extends $tea.Model {
|
|
1331
|
+
payload?: ListHotelSceneItemRequestPayload;
|
|
1332
|
+
userInfo?: ListHotelSceneItemRequestUserInfo;
|
|
1333
|
+
static names(): {
|
|
1334
|
+
[key: string]: string;
|
|
1335
|
+
};
|
|
1336
|
+
static types(): {
|
|
1337
|
+
[key: string]: any;
|
|
1338
|
+
};
|
|
1339
|
+
constructor(map?: {
|
|
1340
|
+
[key: string]: any;
|
|
1341
|
+
});
|
|
1342
|
+
}
|
|
1343
|
+
export declare class ListHotelSceneItemShrinkRequest extends $tea.Model {
|
|
1344
|
+
payloadShrink?: string;
|
|
1345
|
+
userInfoShrink?: string;
|
|
1346
|
+
static names(): {
|
|
1347
|
+
[key: string]: string;
|
|
1348
|
+
};
|
|
1349
|
+
static types(): {
|
|
1350
|
+
[key: string]: any;
|
|
1351
|
+
};
|
|
1352
|
+
constructor(map?: {
|
|
1353
|
+
[key: string]: any;
|
|
1354
|
+
});
|
|
1355
|
+
}
|
|
1356
|
+
export declare class ListHotelSceneItemResponseBody extends $tea.Model {
|
|
1357
|
+
code?: number;
|
|
1358
|
+
message?: string;
|
|
1359
|
+
page?: ListHotelSceneItemResponseBodyPage;
|
|
1360
|
+
requestId?: string;
|
|
1361
|
+
result?: ListHotelSceneItemResponseBodyResult;
|
|
1362
|
+
static names(): {
|
|
1363
|
+
[key: string]: string;
|
|
1364
|
+
};
|
|
1365
|
+
static types(): {
|
|
1366
|
+
[key: string]: any;
|
|
1367
|
+
};
|
|
1368
|
+
constructor(map?: {
|
|
1369
|
+
[key: string]: any;
|
|
1370
|
+
});
|
|
1371
|
+
}
|
|
1372
|
+
export declare class ListHotelSceneItemResponse extends $tea.Model {
|
|
1373
|
+
headers: {
|
|
1374
|
+
[key: string]: string;
|
|
1375
|
+
};
|
|
1376
|
+
statusCode: number;
|
|
1377
|
+
body: ListHotelSceneItemResponseBody;
|
|
1378
|
+
static names(): {
|
|
1379
|
+
[key: string]: string;
|
|
1380
|
+
};
|
|
1381
|
+
static types(): {
|
|
1382
|
+
[key: string]: any;
|
|
1383
|
+
};
|
|
1384
|
+
constructor(map?: {
|
|
1385
|
+
[key: string]: any;
|
|
1386
|
+
});
|
|
1387
|
+
}
|
|
1388
|
+
export declare class ListHotelServiceCategoryHeaders extends $tea.Model {
|
|
1389
|
+
commonHeaders?: {
|
|
1390
|
+
[key: string]: string;
|
|
1391
|
+
};
|
|
1392
|
+
xAcsAligenieAccessToken?: string;
|
|
1393
|
+
authorization?: string;
|
|
1394
|
+
static names(): {
|
|
1395
|
+
[key: string]: string;
|
|
1396
|
+
};
|
|
1397
|
+
static types(): {
|
|
1398
|
+
[key: string]: any;
|
|
1399
|
+
};
|
|
1400
|
+
constructor(map?: {
|
|
1401
|
+
[key: string]: any;
|
|
1402
|
+
});
|
|
1403
|
+
}
|
|
1404
|
+
export declare class ListHotelServiceCategoryRequest extends $tea.Model {
|
|
1405
|
+
payload?: ListHotelServiceCategoryRequestPayload;
|
|
1406
|
+
static names(): {
|
|
1407
|
+
[key: string]: string;
|
|
1408
|
+
};
|
|
1409
|
+
static types(): {
|
|
1410
|
+
[key: string]: any;
|
|
1411
|
+
};
|
|
1412
|
+
constructor(map?: {
|
|
1413
|
+
[key: string]: any;
|
|
1414
|
+
});
|
|
1415
|
+
}
|
|
1416
|
+
export declare class ListHotelServiceCategoryShrinkRequest extends $tea.Model {
|
|
1417
|
+
payloadShrink?: string;
|
|
1418
|
+
static names(): {
|
|
1419
|
+
[key: string]: string;
|
|
1420
|
+
};
|
|
1421
|
+
static types(): {
|
|
1422
|
+
[key: string]: any;
|
|
1423
|
+
};
|
|
1424
|
+
constructor(map?: {
|
|
1425
|
+
[key: string]: any;
|
|
1426
|
+
});
|
|
1427
|
+
}
|
|
1428
|
+
export declare class ListHotelServiceCategoryResponseBody extends $tea.Model {
|
|
1429
|
+
code?: number;
|
|
1430
|
+
message?: string;
|
|
1431
|
+
requestId?: string;
|
|
1432
|
+
result?: ListHotelServiceCategoryResponseBodyResult[];
|
|
1433
|
+
static names(): {
|
|
1434
|
+
[key: string]: string;
|
|
1435
|
+
};
|
|
1436
|
+
static types(): {
|
|
1437
|
+
[key: string]: any;
|
|
1438
|
+
};
|
|
1439
|
+
constructor(map?: {
|
|
1440
|
+
[key: string]: any;
|
|
1441
|
+
});
|
|
1442
|
+
}
|
|
1443
|
+
export declare class ListHotelServiceCategoryResponse extends $tea.Model {
|
|
1444
|
+
headers: {
|
|
1445
|
+
[key: string]: string;
|
|
1446
|
+
};
|
|
1447
|
+
statusCode: number;
|
|
1448
|
+
body: ListHotelServiceCategoryResponseBody;
|
|
1449
|
+
static names(): {
|
|
1450
|
+
[key: string]: string;
|
|
1451
|
+
};
|
|
1452
|
+
static types(): {
|
|
1453
|
+
[key: string]: any;
|
|
1454
|
+
};
|
|
1455
|
+
constructor(map?: {
|
|
1456
|
+
[key: string]: any;
|
|
1457
|
+
});
|
|
1458
|
+
}
|
|
1459
|
+
export declare class PushHotelMessageHeaders extends $tea.Model {
|
|
1460
|
+
commonHeaders?: {
|
|
1461
|
+
[key: string]: string;
|
|
1462
|
+
};
|
|
1463
|
+
xAcsAligenieAccessToken?: string;
|
|
1464
|
+
authorization?: string;
|
|
1465
|
+
static names(): {
|
|
1466
|
+
[key: string]: string;
|
|
1467
|
+
};
|
|
1468
|
+
static types(): {
|
|
1469
|
+
[key: string]: any;
|
|
1470
|
+
};
|
|
1471
|
+
constructor(map?: {
|
|
1472
|
+
[key: string]: any;
|
|
1473
|
+
});
|
|
1474
|
+
}
|
|
1475
|
+
export declare class PushHotelMessageRequest extends $tea.Model {
|
|
1476
|
+
pushHotelMessageReq?: PushHotelMessageRequestPushHotelMessageReq;
|
|
1477
|
+
static names(): {
|
|
1478
|
+
[key: string]: string;
|
|
1479
|
+
};
|
|
1480
|
+
static types(): {
|
|
1481
|
+
[key: string]: any;
|
|
1482
|
+
};
|
|
1483
|
+
constructor(map?: {
|
|
1484
|
+
[key: string]: any;
|
|
1485
|
+
});
|
|
1486
|
+
}
|
|
1487
|
+
export declare class PushHotelMessageShrinkRequest extends $tea.Model {
|
|
1488
|
+
pushHotelMessageReqShrink?: string;
|
|
1489
|
+
static names(): {
|
|
1490
|
+
[key: string]: string;
|
|
1491
|
+
};
|
|
1492
|
+
static types(): {
|
|
1493
|
+
[key: string]: any;
|
|
1494
|
+
};
|
|
1495
|
+
constructor(map?: {
|
|
1496
|
+
[key: string]: any;
|
|
1497
|
+
});
|
|
1498
|
+
}
|
|
1499
|
+
export declare class PushHotelMessageResponseBody extends $tea.Model {
|
|
1500
|
+
code?: number;
|
|
1501
|
+
message?: string;
|
|
1502
|
+
requestId?: string;
|
|
1503
|
+
result?: boolean;
|
|
1504
|
+
static names(): {
|
|
1505
|
+
[key: string]: string;
|
|
1506
|
+
};
|
|
1507
|
+
static types(): {
|
|
1508
|
+
[key: string]: any;
|
|
1509
|
+
};
|
|
1510
|
+
constructor(map?: {
|
|
1511
|
+
[key: string]: any;
|
|
1512
|
+
});
|
|
1513
|
+
}
|
|
1514
|
+
export declare class PushHotelMessageResponse extends $tea.Model {
|
|
1515
|
+
headers: {
|
|
1516
|
+
[key: string]: string;
|
|
1517
|
+
};
|
|
1518
|
+
statusCode: number;
|
|
1519
|
+
body: PushHotelMessageResponseBody;
|
|
1520
|
+
static names(): {
|
|
1521
|
+
[key: string]: string;
|
|
1522
|
+
};
|
|
1523
|
+
static types(): {
|
|
1524
|
+
[key: string]: any;
|
|
1525
|
+
};
|
|
1526
|
+
constructor(map?: {
|
|
1527
|
+
[key: string]: any;
|
|
1528
|
+
});
|
|
1529
|
+
}
|
|
1530
|
+
export declare class QueryDeviceStatusHeaders extends $tea.Model {
|
|
1531
|
+
commonHeaders?: {
|
|
1532
|
+
[key: string]: string;
|
|
1533
|
+
};
|
|
1534
|
+
xAcsAligenieAccessToken?: string;
|
|
1535
|
+
authorization?: string;
|
|
1536
|
+
static names(): {
|
|
1537
|
+
[key: string]: string;
|
|
1538
|
+
};
|
|
1539
|
+
static types(): {
|
|
1540
|
+
[key: string]: any;
|
|
1541
|
+
};
|
|
1542
|
+
constructor(map?: {
|
|
1543
|
+
[key: string]: any;
|
|
1544
|
+
});
|
|
1545
|
+
}
|
|
1546
|
+
export declare class QueryDeviceStatusRequest extends $tea.Model {
|
|
1547
|
+
payload?: QueryDeviceStatusRequestPayload;
|
|
1548
|
+
userInfo?: QueryDeviceStatusRequestUserInfo;
|
|
1549
|
+
static names(): {
|
|
1550
|
+
[key: string]: string;
|
|
1551
|
+
};
|
|
1552
|
+
static types(): {
|
|
1553
|
+
[key: string]: any;
|
|
1554
|
+
};
|
|
1555
|
+
constructor(map?: {
|
|
1556
|
+
[key: string]: any;
|
|
1557
|
+
});
|
|
1558
|
+
}
|
|
1559
|
+
export declare class QueryDeviceStatusShrinkRequest extends $tea.Model {
|
|
1560
|
+
payloadShrink?: string;
|
|
1561
|
+
userInfoShrink?: string;
|
|
1562
|
+
static names(): {
|
|
1563
|
+
[key: string]: string;
|
|
1564
|
+
};
|
|
1565
|
+
static types(): {
|
|
1566
|
+
[key: string]: any;
|
|
1567
|
+
};
|
|
1568
|
+
constructor(map?: {
|
|
1569
|
+
[key: string]: any;
|
|
1570
|
+
});
|
|
1571
|
+
}
|
|
1572
|
+
export declare class QueryDeviceStatusResponseBody extends $tea.Model {
|
|
1573
|
+
code?: number;
|
|
1574
|
+
message?: string;
|
|
1575
|
+
requestId?: string;
|
|
1576
|
+
result?: {
|
|
1577
|
+
[key: string]: string;
|
|
1578
|
+
}[];
|
|
1579
|
+
static names(): {
|
|
1580
|
+
[key: string]: string;
|
|
1581
|
+
};
|
|
1582
|
+
static types(): {
|
|
1583
|
+
[key: string]: any;
|
|
1584
|
+
};
|
|
1585
|
+
constructor(map?: {
|
|
1586
|
+
[key: string]: any;
|
|
1587
|
+
});
|
|
1588
|
+
}
|
|
1589
|
+
export declare class QueryDeviceStatusResponse extends $tea.Model {
|
|
1590
|
+
headers: {
|
|
1591
|
+
[key: string]: string;
|
|
1592
|
+
};
|
|
1593
|
+
statusCode: number;
|
|
1594
|
+
body: QueryDeviceStatusResponseBody;
|
|
1595
|
+
static names(): {
|
|
1596
|
+
[key: string]: string;
|
|
1597
|
+
};
|
|
1598
|
+
static types(): {
|
|
1599
|
+
[key: string]: any;
|
|
1600
|
+
};
|
|
1601
|
+
constructor(map?: {
|
|
1602
|
+
[key: string]: any;
|
|
1603
|
+
});
|
|
1604
|
+
}
|
|
1605
|
+
export declare class QueryHotelProductHeaders extends $tea.Model {
|
|
1606
|
+
commonHeaders?: {
|
|
1607
|
+
[key: string]: string;
|
|
1608
|
+
};
|
|
1609
|
+
xAcsAligenieAccessToken?: string;
|
|
1610
|
+
authorization?: string;
|
|
1611
|
+
static names(): {
|
|
1612
|
+
[key: string]: string;
|
|
1613
|
+
};
|
|
1614
|
+
static types(): {
|
|
1615
|
+
[key: string]: any;
|
|
1616
|
+
};
|
|
1617
|
+
constructor(map?: {
|
|
1618
|
+
[key: string]: any;
|
|
1619
|
+
});
|
|
1620
|
+
}
|
|
1621
|
+
export declare class QueryHotelProductRequest extends $tea.Model {
|
|
1622
|
+
userInfo?: QueryHotelProductRequestUserInfo;
|
|
1623
|
+
static names(): {
|
|
1624
|
+
[key: string]: string;
|
|
1625
|
+
};
|
|
1626
|
+
static types(): {
|
|
1627
|
+
[key: string]: any;
|
|
1628
|
+
};
|
|
1629
|
+
constructor(map?: {
|
|
1630
|
+
[key: string]: any;
|
|
1631
|
+
});
|
|
1632
|
+
}
|
|
1633
|
+
export declare class QueryHotelProductShrinkRequest extends $tea.Model {
|
|
1634
|
+
userInfoShrink?: string;
|
|
1635
|
+
static names(): {
|
|
1636
|
+
[key: string]: string;
|
|
1637
|
+
};
|
|
1638
|
+
static types(): {
|
|
1639
|
+
[key: string]: any;
|
|
1640
|
+
};
|
|
1641
|
+
constructor(map?: {
|
|
1642
|
+
[key: string]: any;
|
|
1643
|
+
});
|
|
1644
|
+
}
|
|
1645
|
+
export declare class QueryHotelProductResponseBody extends $tea.Model {
|
|
1646
|
+
code?: number;
|
|
1647
|
+
message?: string;
|
|
1648
|
+
requestId?: string;
|
|
1649
|
+
result?: QueryHotelProductResponseBodyResult;
|
|
1650
|
+
static names(): {
|
|
1651
|
+
[key: string]: string;
|
|
1652
|
+
};
|
|
1653
|
+
static types(): {
|
|
1654
|
+
[key: string]: any;
|
|
1655
|
+
};
|
|
1656
|
+
constructor(map?: {
|
|
1657
|
+
[key: string]: any;
|
|
1658
|
+
});
|
|
1659
|
+
}
|
|
1660
|
+
export declare class QueryHotelProductResponse extends $tea.Model {
|
|
1661
|
+
headers: {
|
|
1662
|
+
[key: string]: string;
|
|
1663
|
+
};
|
|
1664
|
+
statusCode: number;
|
|
1665
|
+
body: QueryHotelProductResponseBody;
|
|
1666
|
+
static names(): {
|
|
1667
|
+
[key: string]: string;
|
|
1668
|
+
};
|
|
1669
|
+
static types(): {
|
|
1670
|
+
[key: string]: any;
|
|
1671
|
+
};
|
|
1672
|
+
constructor(map?: {
|
|
1673
|
+
[key: string]: any;
|
|
1674
|
+
});
|
|
1675
|
+
}
|
|
1676
|
+
export declare class QueryRoomControlDevicesHeaders extends $tea.Model {
|
|
1677
|
+
commonHeaders?: {
|
|
1678
|
+
[key: string]: string;
|
|
1679
|
+
};
|
|
1680
|
+
xAcsAligenieAccessToken?: string;
|
|
1681
|
+
authorization?: string;
|
|
1682
|
+
static names(): {
|
|
1683
|
+
[key: string]: string;
|
|
1684
|
+
};
|
|
1685
|
+
static types(): {
|
|
1686
|
+
[key: string]: any;
|
|
1687
|
+
};
|
|
1688
|
+
constructor(map?: {
|
|
1689
|
+
[key: string]: any;
|
|
1690
|
+
});
|
|
1691
|
+
}
|
|
1692
|
+
export declare class QueryRoomControlDevicesRequest extends $tea.Model {
|
|
1693
|
+
hotelId?: string;
|
|
1694
|
+
roomNo?: string;
|
|
1695
|
+
static names(): {
|
|
1696
|
+
[key: string]: string;
|
|
1697
|
+
};
|
|
1698
|
+
static types(): {
|
|
1699
|
+
[key: string]: any;
|
|
1700
|
+
};
|
|
1701
|
+
constructor(map?: {
|
|
1702
|
+
[key: string]: any;
|
|
1703
|
+
});
|
|
1704
|
+
}
|
|
1705
|
+
export declare class QueryRoomControlDevicesResponseBody extends $tea.Model {
|
|
1706
|
+
code?: number;
|
|
1707
|
+
message?: string;
|
|
1708
|
+
requestId?: string;
|
|
1709
|
+
result?: QueryRoomControlDevicesResponseBodyResult[];
|
|
1710
|
+
static names(): {
|
|
1711
|
+
[key: string]: string;
|
|
1712
|
+
};
|
|
1713
|
+
static types(): {
|
|
1714
|
+
[key: string]: any;
|
|
1715
|
+
};
|
|
1716
|
+
constructor(map?: {
|
|
1717
|
+
[key: string]: any;
|
|
1718
|
+
});
|
|
1719
|
+
}
|
|
1720
|
+
export declare class QueryRoomControlDevicesResponse extends $tea.Model {
|
|
1721
|
+
headers: {
|
|
1722
|
+
[key: string]: string;
|
|
1723
|
+
};
|
|
1724
|
+
statusCode: number;
|
|
1725
|
+
body: QueryRoomControlDevicesResponseBody;
|
|
1726
|
+
static names(): {
|
|
1727
|
+
[key: string]: string;
|
|
1728
|
+
};
|
|
1729
|
+
static types(): {
|
|
1730
|
+
[key: string]: any;
|
|
1731
|
+
};
|
|
1732
|
+
constructor(map?: {
|
|
1733
|
+
[key: string]: any;
|
|
1734
|
+
});
|
|
1735
|
+
}
|
|
1736
|
+
export declare class RoomCheckOutHeaders extends $tea.Model {
|
|
1737
|
+
commonHeaders?: {
|
|
1738
|
+
[key: string]: string;
|
|
1739
|
+
};
|
|
1740
|
+
xAcsAligenieAccessToken?: string;
|
|
1741
|
+
authorization?: string;
|
|
1742
|
+
static names(): {
|
|
1743
|
+
[key: string]: string;
|
|
1744
|
+
};
|
|
1745
|
+
static types(): {
|
|
1746
|
+
[key: string]: any;
|
|
1747
|
+
};
|
|
1748
|
+
constructor(map?: {
|
|
1749
|
+
[key: string]: any;
|
|
1750
|
+
});
|
|
1751
|
+
}
|
|
1752
|
+
export declare class RoomCheckOutRequest extends $tea.Model {
|
|
1753
|
+
deviceInfo?: RoomCheckOutRequestDeviceInfo;
|
|
1754
|
+
userInfo?: RoomCheckOutRequestUserInfo;
|
|
1755
|
+
static names(): {
|
|
1756
|
+
[key: string]: string;
|
|
1757
|
+
};
|
|
1758
|
+
static types(): {
|
|
1759
|
+
[key: string]: any;
|
|
1760
|
+
};
|
|
1761
|
+
constructor(map?: {
|
|
1762
|
+
[key: string]: any;
|
|
1763
|
+
});
|
|
1764
|
+
}
|
|
1765
|
+
export declare class RoomCheckOutShrinkRequest extends $tea.Model {
|
|
1766
|
+
deviceInfoShrink?: string;
|
|
1767
|
+
userInfoShrink?: string;
|
|
1768
|
+
static names(): {
|
|
1769
|
+
[key: string]: string;
|
|
1770
|
+
};
|
|
1771
|
+
static types(): {
|
|
1772
|
+
[key: string]: any;
|
|
1773
|
+
};
|
|
1774
|
+
constructor(map?: {
|
|
1775
|
+
[key: string]: any;
|
|
1776
|
+
});
|
|
1777
|
+
}
|
|
1778
|
+
export declare class RoomCheckOutResponseBody extends $tea.Model {
|
|
1779
|
+
code?: number;
|
|
1780
|
+
message?: string;
|
|
1781
|
+
requestId?: string;
|
|
1782
|
+
result?: boolean;
|
|
1783
|
+
static names(): {
|
|
1784
|
+
[key: string]: string;
|
|
1785
|
+
};
|
|
1786
|
+
static types(): {
|
|
1787
|
+
[key: string]: any;
|
|
1788
|
+
};
|
|
1789
|
+
constructor(map?: {
|
|
1790
|
+
[key: string]: any;
|
|
1791
|
+
});
|
|
1792
|
+
}
|
|
1793
|
+
export declare class RoomCheckOutResponse extends $tea.Model {
|
|
1794
|
+
headers: {
|
|
1795
|
+
[key: string]: string;
|
|
1796
|
+
};
|
|
1797
|
+
statusCode: number;
|
|
1798
|
+
body: RoomCheckOutResponseBody;
|
|
1799
|
+
static names(): {
|
|
1800
|
+
[key: string]: string;
|
|
1801
|
+
};
|
|
1802
|
+
static types(): {
|
|
1803
|
+
[key: string]: any;
|
|
1804
|
+
};
|
|
1805
|
+
constructor(map?: {
|
|
1806
|
+
[key: string]: any;
|
|
1807
|
+
});
|
|
1808
|
+
}
|
|
1809
|
+
export declare class SubmitHotelOrderHeaders extends $tea.Model {
|
|
1810
|
+
commonHeaders?: {
|
|
1811
|
+
[key: string]: string;
|
|
1812
|
+
};
|
|
1813
|
+
xAcsAligenieAccessToken?: string;
|
|
1814
|
+
authorization?: string;
|
|
1815
|
+
static names(): {
|
|
1816
|
+
[key: string]: string;
|
|
1817
|
+
};
|
|
1818
|
+
static types(): {
|
|
1819
|
+
[key: string]: any;
|
|
1820
|
+
};
|
|
1821
|
+
constructor(map?: {
|
|
1822
|
+
[key: string]: any;
|
|
1823
|
+
});
|
|
1824
|
+
}
|
|
1825
|
+
export declare class SubmitHotelOrderRequest extends $tea.Model {
|
|
1826
|
+
payload?: SubmitHotelOrderRequestPayload;
|
|
1827
|
+
userInfo?: SubmitHotelOrderRequestUserInfo;
|
|
1828
|
+
static names(): {
|
|
1829
|
+
[key: string]: string;
|
|
1830
|
+
};
|
|
1831
|
+
static types(): {
|
|
1832
|
+
[key: string]: any;
|
|
1833
|
+
};
|
|
1834
|
+
constructor(map?: {
|
|
1835
|
+
[key: string]: any;
|
|
1836
|
+
});
|
|
1837
|
+
}
|
|
1838
|
+
export declare class SubmitHotelOrderShrinkRequest extends $tea.Model {
|
|
1839
|
+
payloadShrink?: string;
|
|
1840
|
+
userInfoShrink?: string;
|
|
1841
|
+
static names(): {
|
|
1842
|
+
[key: string]: string;
|
|
1843
|
+
};
|
|
1844
|
+
static types(): {
|
|
1845
|
+
[key: string]: any;
|
|
1846
|
+
};
|
|
1847
|
+
constructor(map?: {
|
|
1848
|
+
[key: string]: any;
|
|
1849
|
+
});
|
|
1850
|
+
}
|
|
1851
|
+
export declare class SubmitHotelOrderResponseBody extends $tea.Model {
|
|
1852
|
+
code?: number;
|
|
1853
|
+
message?: string;
|
|
1854
|
+
requestId?: string;
|
|
1855
|
+
result?: string;
|
|
1856
|
+
static names(): {
|
|
1857
|
+
[key: string]: string;
|
|
1858
|
+
};
|
|
1859
|
+
static types(): {
|
|
1860
|
+
[key: string]: any;
|
|
1861
|
+
};
|
|
1862
|
+
constructor(map?: {
|
|
1863
|
+
[key: string]: any;
|
|
1864
|
+
});
|
|
1865
|
+
}
|
|
1866
|
+
export declare class SubmitHotelOrderResponse extends $tea.Model {
|
|
1867
|
+
headers: {
|
|
1868
|
+
[key: string]: string;
|
|
1869
|
+
};
|
|
1870
|
+
statusCode: number;
|
|
1871
|
+
body: SubmitHotelOrderResponseBody;
|
|
1872
|
+
static names(): {
|
|
1873
|
+
[key: string]: string;
|
|
1874
|
+
};
|
|
1875
|
+
static types(): {
|
|
1876
|
+
[key: string]: any;
|
|
1877
|
+
};
|
|
1878
|
+
constructor(map?: {
|
|
1879
|
+
[key: string]: any;
|
|
1880
|
+
});
|
|
1881
|
+
}
|
|
1882
|
+
export declare class UpdateHotelAlarmHeaders extends $tea.Model {
|
|
1883
|
+
commonHeaders?: {
|
|
1884
|
+
[key: string]: string;
|
|
1885
|
+
};
|
|
1886
|
+
xAcsAligenieAccessToken?: string;
|
|
1887
|
+
authorization?: string;
|
|
1888
|
+
static names(): {
|
|
1889
|
+
[key: string]: string;
|
|
1890
|
+
};
|
|
1891
|
+
static types(): {
|
|
1892
|
+
[key: string]: any;
|
|
1893
|
+
};
|
|
1894
|
+
constructor(map?: {
|
|
1895
|
+
[key: string]: any;
|
|
1896
|
+
});
|
|
1897
|
+
}
|
|
1898
|
+
export declare class UpdateHotelAlarmRequest extends $tea.Model {
|
|
1899
|
+
alarms?: UpdateHotelAlarmRequestAlarms[];
|
|
1900
|
+
hotelId?: string;
|
|
1901
|
+
scheduleInfo?: UpdateHotelAlarmRequestScheduleInfo;
|
|
1902
|
+
static names(): {
|
|
1903
|
+
[key: string]: string;
|
|
1904
|
+
};
|
|
1905
|
+
static types(): {
|
|
1906
|
+
[key: string]: any;
|
|
1907
|
+
};
|
|
1908
|
+
constructor(map?: {
|
|
1909
|
+
[key: string]: any;
|
|
1910
|
+
});
|
|
1911
|
+
}
|
|
1912
|
+
export declare class UpdateHotelAlarmShrinkRequest extends $tea.Model {
|
|
1913
|
+
alarmsShrink?: string;
|
|
1914
|
+
hotelId?: string;
|
|
1915
|
+
scheduleInfoShrink?: string;
|
|
1916
|
+
static names(): {
|
|
1917
|
+
[key: string]: string;
|
|
1918
|
+
};
|
|
1919
|
+
static types(): {
|
|
1920
|
+
[key: string]: any;
|
|
1921
|
+
};
|
|
1922
|
+
constructor(map?: {
|
|
1923
|
+
[key: string]: any;
|
|
1924
|
+
});
|
|
1925
|
+
}
|
|
1926
|
+
export declare class UpdateHotelAlarmResponseBody extends $tea.Model {
|
|
1927
|
+
extentions?: {
|
|
1928
|
+
[key: string]: any;
|
|
1929
|
+
};
|
|
1930
|
+
message?: string;
|
|
1931
|
+
requestId?: string;
|
|
1932
|
+
result?: number;
|
|
1933
|
+
statusCode?: number;
|
|
1934
|
+
static names(): {
|
|
1935
|
+
[key: string]: string;
|
|
1936
|
+
};
|
|
1937
|
+
static types(): {
|
|
1938
|
+
[key: string]: any;
|
|
1939
|
+
};
|
|
1940
|
+
constructor(map?: {
|
|
1941
|
+
[key: string]: any;
|
|
1942
|
+
});
|
|
1943
|
+
}
|
|
1944
|
+
export declare class UpdateHotelAlarmResponse extends $tea.Model {
|
|
1945
|
+
headers: {
|
|
1946
|
+
[key: string]: string;
|
|
1947
|
+
};
|
|
1948
|
+
statusCode: number;
|
|
1949
|
+
body: UpdateHotelAlarmResponseBody;
|
|
1950
|
+
static names(): {
|
|
1951
|
+
[key: string]: string;
|
|
1952
|
+
};
|
|
1953
|
+
static types(): {
|
|
1954
|
+
[key: string]: any;
|
|
1955
|
+
};
|
|
1956
|
+
constructor(map?: {
|
|
1957
|
+
[key: string]: any;
|
|
1958
|
+
});
|
|
1959
|
+
}
|
|
1960
|
+
export declare class CreateHotelAlarmRequestScheduleInfoOnce extends $tea.Model {
|
|
1961
|
+
day?: number;
|
|
1962
|
+
hour?: number;
|
|
1963
|
+
minute?: number;
|
|
1964
|
+
month?: number;
|
|
1965
|
+
year?: number;
|
|
1966
|
+
static names(): {
|
|
1967
|
+
[key: string]: string;
|
|
1968
|
+
};
|
|
1969
|
+
static types(): {
|
|
1970
|
+
[key: string]: any;
|
|
1971
|
+
};
|
|
1972
|
+
constructor(map?: {
|
|
1973
|
+
[key: string]: any;
|
|
1974
|
+
});
|
|
1975
|
+
}
|
|
1976
|
+
export declare class CreateHotelAlarmRequestScheduleInfoWeekly extends $tea.Model {
|
|
1977
|
+
daysOfWeek?: number[];
|
|
1978
|
+
hour?: number;
|
|
1979
|
+
minute?: number;
|
|
1980
|
+
static names(): {
|
|
1981
|
+
[key: string]: string;
|
|
1982
|
+
};
|
|
1983
|
+
static types(): {
|
|
1984
|
+
[key: string]: any;
|
|
1985
|
+
};
|
|
1986
|
+
constructor(map?: {
|
|
1987
|
+
[key: string]: any;
|
|
1988
|
+
});
|
|
1989
|
+
}
|
|
1990
|
+
export declare class CreateHotelAlarmRequestScheduleInfo extends $tea.Model {
|
|
1991
|
+
once?: CreateHotelAlarmRequestScheduleInfoOnce;
|
|
1992
|
+
type?: string;
|
|
1993
|
+
weekly?: CreateHotelAlarmRequestScheduleInfoWeekly;
|
|
1994
|
+
static names(): {
|
|
1995
|
+
[key: string]: string;
|
|
1996
|
+
};
|
|
1997
|
+
static types(): {
|
|
1998
|
+
[key: string]: any;
|
|
1999
|
+
};
|
|
2000
|
+
constructor(map?: {
|
|
2001
|
+
[key: string]: any;
|
|
2002
|
+
});
|
|
2003
|
+
}
|
|
2004
|
+
export declare class CreateHotelAlarmResponseBodyResult extends $tea.Model {
|
|
2005
|
+
alarmId?: number;
|
|
2006
|
+
deviceOpenId?: string;
|
|
2007
|
+
failMsg?: string;
|
|
2008
|
+
roomNo?: string;
|
|
2009
|
+
userOpenId?: string;
|
|
2010
|
+
static names(): {
|
|
2011
|
+
[key: string]: string;
|
|
2012
|
+
};
|
|
2013
|
+
static types(): {
|
|
2014
|
+
[key: string]: any;
|
|
2015
|
+
};
|
|
2016
|
+
constructor(map?: {
|
|
2017
|
+
[key: string]: any;
|
|
2018
|
+
});
|
|
2019
|
+
}
|
|
2020
|
+
export declare class DeleteHotelAlarmRequestAlarms extends $tea.Model {
|
|
2021
|
+
alarmId?: number;
|
|
2022
|
+
deviceOpenId?: string;
|
|
2023
|
+
roomNo?: string;
|
|
2024
|
+
userOpenId?: string;
|
|
2025
|
+
static names(): {
|
|
2026
|
+
[key: string]: string;
|
|
2027
|
+
};
|
|
2028
|
+
static types(): {
|
|
2029
|
+
[key: string]: any;
|
|
2030
|
+
};
|
|
2031
|
+
constructor(map?: {
|
|
2032
|
+
[key: string]: any;
|
|
2033
|
+
});
|
|
2034
|
+
}
|
|
2035
|
+
export declare class DeviceControlRequestPayload extends $tea.Model {
|
|
2036
|
+
category?: string;
|
|
2037
|
+
cmd?: string;
|
|
2038
|
+
deviceNumber?: string;
|
|
2039
|
+
extendInfo?: string;
|
|
2040
|
+
location?: string;
|
|
2041
|
+
properties?: {
|
|
2042
|
+
[key: string]: string;
|
|
2043
|
+
};
|
|
2044
|
+
static names(): {
|
|
2045
|
+
[key: string]: string;
|
|
2046
|
+
};
|
|
2047
|
+
static types(): {
|
|
2048
|
+
[key: string]: any;
|
|
2049
|
+
};
|
|
2050
|
+
constructor(map?: {
|
|
2051
|
+
[key: string]: any;
|
|
2052
|
+
});
|
|
2053
|
+
}
|
|
2054
|
+
export declare class DeviceControlRequestUserInfo extends $tea.Model {
|
|
2055
|
+
encodeKey?: string;
|
|
2056
|
+
encodeType?: string;
|
|
2057
|
+
id?: string;
|
|
2058
|
+
idType?: string;
|
|
2059
|
+
organizationId?: string;
|
|
2060
|
+
static names(): {
|
|
2061
|
+
[key: string]: string;
|
|
2062
|
+
};
|
|
2063
|
+
static types(): {
|
|
2064
|
+
[key: string]: any;
|
|
2065
|
+
};
|
|
2066
|
+
constructor(map?: {
|
|
2067
|
+
[key: string]: any;
|
|
2068
|
+
});
|
|
2069
|
+
}
|
|
2070
|
+
export declare class DeviceControlResponseBodyResult extends $tea.Model {
|
|
2071
|
+
status?: string;
|
|
2072
|
+
static names(): {
|
|
2073
|
+
[key: string]: string;
|
|
2074
|
+
};
|
|
2075
|
+
static types(): {
|
|
2076
|
+
[key: string]: any;
|
|
2077
|
+
};
|
|
2078
|
+
constructor(map?: {
|
|
2079
|
+
[key: string]: any;
|
|
2080
|
+
});
|
|
2081
|
+
}
|
|
2082
|
+
export declare class GetHotelHomeBackImageAndModesRequestUserInfo extends $tea.Model {
|
|
2083
|
+
encodeKey?: string;
|
|
2084
|
+
encodeType?: string;
|
|
2085
|
+
id?: string;
|
|
2086
|
+
idType?: string;
|
|
2087
|
+
organizationId?: string;
|
|
2088
|
+
static names(): {
|
|
2089
|
+
[key: string]: string;
|
|
2090
|
+
};
|
|
2091
|
+
static types(): {
|
|
2092
|
+
[key: string]: any;
|
|
2093
|
+
};
|
|
2094
|
+
constructor(map?: {
|
|
2095
|
+
[key: string]: any;
|
|
2096
|
+
});
|
|
2097
|
+
}
|
|
2098
|
+
export declare class GetHotelHomeBackImageAndModesResponseBodyResultModeList extends $tea.Model {
|
|
2099
|
+
cnName?: string;
|
|
2100
|
+
code?: string;
|
|
2101
|
+
icon?: string;
|
|
2102
|
+
static names(): {
|
|
2103
|
+
[key: string]: string;
|
|
2104
|
+
};
|
|
2105
|
+
static types(): {
|
|
2106
|
+
[key: string]: any;
|
|
2107
|
+
};
|
|
2108
|
+
constructor(map?: {
|
|
2109
|
+
[key: string]: any;
|
|
2110
|
+
});
|
|
2111
|
+
}
|
|
2112
|
+
export declare class GetHotelHomeBackImageAndModesResponseBodyResult extends $tea.Model {
|
|
1028
2113
|
backgroundImage?: string;
|
|
1029
2114
|
hotelName?: string;
|
|
1030
2115
|
modeList?: GetHotelHomeBackImageAndModesResponseBodyResultModeList[];
|
|
@@ -1038,6 +2123,22 @@ export declare class GetHotelHomeBackImageAndModesResponseBodyResult extends $te
|
|
|
1038
2123
|
[key: string]: any;
|
|
1039
2124
|
});
|
|
1040
2125
|
}
|
|
2126
|
+
export declare class GetHotelNoticeRequestUserInfo extends $tea.Model {
|
|
2127
|
+
encodeKey?: string;
|
|
2128
|
+
encodeType?: string;
|
|
2129
|
+
id?: string;
|
|
2130
|
+
idType?: string;
|
|
2131
|
+
organizationId?: string;
|
|
2132
|
+
static names(): {
|
|
2133
|
+
[key: string]: string;
|
|
2134
|
+
};
|
|
2135
|
+
static types(): {
|
|
2136
|
+
[key: string]: any;
|
|
2137
|
+
};
|
|
2138
|
+
constructor(map?: {
|
|
2139
|
+
[key: string]: any;
|
|
2140
|
+
});
|
|
2141
|
+
}
|
|
1041
2142
|
export declare class GetHotelOrderDetailRequestPayload extends $tea.Model {
|
|
1042
2143
|
orderNo?: string;
|
|
1043
2144
|
static names(): {
|
|
@@ -1066,6 +2167,23 @@ export declare class GetHotelOrderDetailResponseBodyResult extends $tea.Model {
|
|
|
1066
2167
|
[key: string]: any;
|
|
1067
2168
|
});
|
|
1068
2169
|
}
|
|
2170
|
+
export declare class GetHotelRoomDeviceResponseBodyResult extends $tea.Model {
|
|
2171
|
+
firmwareVersion?: string;
|
|
2172
|
+
hotelId?: string;
|
|
2173
|
+
mac?: string;
|
|
2174
|
+
onlineStatus?: number;
|
|
2175
|
+
roomNo?: string;
|
|
2176
|
+
sn?: string;
|
|
2177
|
+
static names(): {
|
|
2178
|
+
[key: string]: string;
|
|
2179
|
+
};
|
|
2180
|
+
static types(): {
|
|
2181
|
+
[key: string]: any;
|
|
2182
|
+
};
|
|
2183
|
+
constructor(map?: {
|
|
2184
|
+
[key: string]: any;
|
|
2185
|
+
});
|
|
2186
|
+
}
|
|
1069
2187
|
export declare class GetHotelSampleUtterancesRequestUserInfo extends $tea.Model {
|
|
1070
2188
|
encodeKey?: string;
|
|
1071
2189
|
encodeType?: string;
|
|
@@ -1111,6 +2229,93 @@ export declare class GetHotelScreenSaverResponseBodyResult extends $tea.Model {
|
|
|
1111
2229
|
[key: string]: any;
|
|
1112
2230
|
});
|
|
1113
2231
|
}
|
|
2232
|
+
export declare class ImportRoomControlDevicesRequestLocationDevicesDevices extends $tea.Model {
|
|
2233
|
+
deviceName?: string;
|
|
2234
|
+
name?: string;
|
|
2235
|
+
number?: string;
|
|
2236
|
+
static names(): {
|
|
2237
|
+
[key: string]: string;
|
|
2238
|
+
};
|
|
2239
|
+
static types(): {
|
|
2240
|
+
[key: string]: any;
|
|
2241
|
+
};
|
|
2242
|
+
constructor(map?: {
|
|
2243
|
+
[key: string]: any;
|
|
2244
|
+
});
|
|
2245
|
+
}
|
|
2246
|
+
export declare class ImportRoomControlDevicesRequestLocationDevices extends $tea.Model {
|
|
2247
|
+
devices?: ImportRoomControlDevicesRequestLocationDevicesDevices[];
|
|
2248
|
+
location?: string;
|
|
2249
|
+
locationName?: string;
|
|
2250
|
+
static names(): {
|
|
2251
|
+
[key: string]: string;
|
|
2252
|
+
};
|
|
2253
|
+
static types(): {
|
|
2254
|
+
[key: string]: any;
|
|
2255
|
+
};
|
|
2256
|
+
constructor(map?: {
|
|
2257
|
+
[key: string]: any;
|
|
2258
|
+
});
|
|
2259
|
+
}
|
|
2260
|
+
export declare class ListHotelAlarmResponseBodyResultScheduleInfoOnce extends $tea.Model {
|
|
2261
|
+
day?: number;
|
|
2262
|
+
hour?: number;
|
|
2263
|
+
minute?: number;
|
|
2264
|
+
month?: number;
|
|
2265
|
+
year?: number;
|
|
2266
|
+
static names(): {
|
|
2267
|
+
[key: string]: string;
|
|
2268
|
+
};
|
|
2269
|
+
static types(): {
|
|
2270
|
+
[key: string]: any;
|
|
2271
|
+
};
|
|
2272
|
+
constructor(map?: {
|
|
2273
|
+
[key: string]: any;
|
|
2274
|
+
});
|
|
2275
|
+
}
|
|
2276
|
+
export declare class ListHotelAlarmResponseBodyResultScheduleInfoWeekly extends $tea.Model {
|
|
2277
|
+
daysOfWeek?: number[];
|
|
2278
|
+
hour?: number;
|
|
2279
|
+
minute?: number;
|
|
2280
|
+
static names(): {
|
|
2281
|
+
[key: string]: string;
|
|
2282
|
+
};
|
|
2283
|
+
static types(): {
|
|
2284
|
+
[key: string]: any;
|
|
2285
|
+
};
|
|
2286
|
+
constructor(map?: {
|
|
2287
|
+
[key: string]: any;
|
|
2288
|
+
});
|
|
2289
|
+
}
|
|
2290
|
+
export declare class ListHotelAlarmResponseBodyResultScheduleInfo extends $tea.Model {
|
|
2291
|
+
once?: ListHotelAlarmResponseBodyResultScheduleInfoOnce;
|
|
2292
|
+
type?: string;
|
|
2293
|
+
weekly?: ListHotelAlarmResponseBodyResultScheduleInfoWeekly;
|
|
2294
|
+
static names(): {
|
|
2295
|
+
[key: string]: string;
|
|
2296
|
+
};
|
|
2297
|
+
static types(): {
|
|
2298
|
+
[key: string]: any;
|
|
2299
|
+
};
|
|
2300
|
+
constructor(map?: {
|
|
2301
|
+
[key: string]: any;
|
|
2302
|
+
});
|
|
2303
|
+
}
|
|
2304
|
+
export declare class ListHotelAlarmResponseBodyResult extends $tea.Model {
|
|
2305
|
+
alarmId?: number;
|
|
2306
|
+
deviceOpenId?: string;
|
|
2307
|
+
scheduleInfo?: ListHotelAlarmResponseBodyResultScheduleInfo;
|
|
2308
|
+
userOpenId?: string;
|
|
2309
|
+
static names(): {
|
|
2310
|
+
[key: string]: string;
|
|
2311
|
+
};
|
|
2312
|
+
static types(): {
|
|
2313
|
+
[key: string]: any;
|
|
2314
|
+
};
|
|
2315
|
+
constructor(map?: {
|
|
2316
|
+
[key: string]: any;
|
|
2317
|
+
});
|
|
2318
|
+
}
|
|
1114
2319
|
export declare class ListHotelControlDeviceRequestUserInfo extends $tea.Model {
|
|
1115
2320
|
encodeKey?: string;
|
|
1116
2321
|
encodeType?: string;
|
|
@@ -1127,6 +2332,49 @@ export declare class ListHotelControlDeviceRequestUserInfo extends $tea.Model {
|
|
|
1127
2332
|
[key: string]: any;
|
|
1128
2333
|
});
|
|
1129
2334
|
}
|
|
2335
|
+
export declare class ListHotelInfoResponseBodyResultAuthAccount extends $tea.Model {
|
|
2336
|
+
userName?: string;
|
|
2337
|
+
static names(): {
|
|
2338
|
+
[key: string]: string;
|
|
2339
|
+
};
|
|
2340
|
+
static types(): {
|
|
2341
|
+
[key: string]: any;
|
|
2342
|
+
};
|
|
2343
|
+
constructor(map?: {
|
|
2344
|
+
[key: string]: any;
|
|
2345
|
+
});
|
|
2346
|
+
}
|
|
2347
|
+
export declare class ListHotelInfoResponseBodyResult extends $tea.Model {
|
|
2348
|
+
authAccount?: ListHotelInfoResponseBodyResultAuthAccount[];
|
|
2349
|
+
hotelAddress?: string;
|
|
2350
|
+
hotelId?: string;
|
|
2351
|
+
hotelName?: string;
|
|
2352
|
+
static names(): {
|
|
2353
|
+
[key: string]: string;
|
|
2354
|
+
};
|
|
2355
|
+
static types(): {
|
|
2356
|
+
[key: string]: any;
|
|
2357
|
+
};
|
|
2358
|
+
constructor(map?: {
|
|
2359
|
+
[key: string]: any;
|
|
2360
|
+
});
|
|
2361
|
+
}
|
|
2362
|
+
export declare class ListHotelMessageTemplateResponseBodyResult extends $tea.Model {
|
|
2363
|
+
auditMark?: string;
|
|
2364
|
+
auditStatus?: string;
|
|
2365
|
+
templateDetail?: string;
|
|
2366
|
+
templateId?: number;
|
|
2367
|
+
templateName?: string;
|
|
2368
|
+
static names(): {
|
|
2369
|
+
[key: string]: string;
|
|
2370
|
+
};
|
|
2371
|
+
static types(): {
|
|
2372
|
+
[key: string]: any;
|
|
2373
|
+
};
|
|
2374
|
+
constructor(map?: {
|
|
2375
|
+
[key: string]: any;
|
|
2376
|
+
});
|
|
2377
|
+
}
|
|
1130
2378
|
export declare class ListHotelOrderRequestPayloadPage extends $tea.Model {
|
|
1131
2379
|
pageNumber?: number;
|
|
1132
2380
|
pageSize?: number;
|
|
@@ -1204,6 +2452,19 @@ export declare class ListHotelOrderResponseBodyResult extends $tea.Model {
|
|
|
1204
2452
|
[key: string]: any;
|
|
1205
2453
|
});
|
|
1206
2454
|
}
|
|
2455
|
+
export declare class ListHotelRoomsResponseBodyResult extends $tea.Model {
|
|
2456
|
+
hotelId?: string;
|
|
2457
|
+
roomNo?: string;
|
|
2458
|
+
static names(): {
|
|
2459
|
+
[key: string]: string;
|
|
2460
|
+
};
|
|
2461
|
+
static types(): {
|
|
2462
|
+
[key: string]: any;
|
|
2463
|
+
};
|
|
2464
|
+
constructor(map?: {
|
|
2465
|
+
[key: string]: any;
|
|
2466
|
+
});
|
|
2467
|
+
}
|
|
1207
2468
|
export declare class ListHotelSceneItemRequestPayload extends $tea.Model {
|
|
1208
2469
|
type?: string;
|
|
1209
2470
|
static names(): {
|
|
@@ -1319,6 +2580,23 @@ export declare class ListHotelServiceCategoryResponseBodyResult extends $tea.Mod
|
|
|
1319
2580
|
[key: string]: any;
|
|
1320
2581
|
});
|
|
1321
2582
|
}
|
|
2583
|
+
export declare class PushHotelMessageRequestPushHotelMessageReq extends $tea.Model {
|
|
2584
|
+
hotelId?: string;
|
|
2585
|
+
paramMap?: {
|
|
2586
|
+
[key: string]: string;
|
|
2587
|
+
};
|
|
2588
|
+
roomNo?: string;
|
|
2589
|
+
templateId?: number;
|
|
2590
|
+
static names(): {
|
|
2591
|
+
[key: string]: string;
|
|
2592
|
+
};
|
|
2593
|
+
static types(): {
|
|
2594
|
+
[key: string]: any;
|
|
2595
|
+
};
|
|
2596
|
+
constructor(map?: {
|
|
2597
|
+
[key: string]: any;
|
|
2598
|
+
});
|
|
2599
|
+
}
|
|
1322
2600
|
export declare class QueryDeviceStatusRequestPayloadLocationDevices extends $tea.Model {
|
|
1323
2601
|
deviceNumber?: string;
|
|
1324
2602
|
deviceType?: string;
|
|
@@ -1395,6 +2673,34 @@ export declare class QueryHotelProductResponseBodyResult extends $tea.Model {
|
|
|
1395
2673
|
[key: string]: any;
|
|
1396
2674
|
});
|
|
1397
2675
|
}
|
|
2676
|
+
export declare class QueryRoomControlDevicesResponseBodyResultDevices extends $tea.Model {
|
|
2677
|
+
deviceName?: string;
|
|
2678
|
+
name?: string;
|
|
2679
|
+
number?: string;
|
|
2680
|
+
static names(): {
|
|
2681
|
+
[key: string]: string;
|
|
2682
|
+
};
|
|
2683
|
+
static types(): {
|
|
2684
|
+
[key: string]: any;
|
|
2685
|
+
};
|
|
2686
|
+
constructor(map?: {
|
|
2687
|
+
[key: string]: any;
|
|
2688
|
+
});
|
|
2689
|
+
}
|
|
2690
|
+
export declare class QueryRoomControlDevicesResponseBodyResult extends $tea.Model {
|
|
2691
|
+
devices?: QueryRoomControlDevicesResponseBodyResultDevices[];
|
|
2692
|
+
location?: string;
|
|
2693
|
+
locationName?: string;
|
|
2694
|
+
static names(): {
|
|
2695
|
+
[key: string]: string;
|
|
2696
|
+
};
|
|
2697
|
+
static types(): {
|
|
2698
|
+
[key: string]: any;
|
|
2699
|
+
};
|
|
2700
|
+
constructor(map?: {
|
|
2701
|
+
[key: string]: any;
|
|
2702
|
+
});
|
|
2703
|
+
}
|
|
1398
2704
|
export declare class RoomCheckOutRequestDeviceInfo extends $tea.Model {
|
|
1399
2705
|
encodeKey?: string;
|
|
1400
2706
|
encodeType?: string;
|
|
@@ -1469,35 +2775,124 @@ export declare class SubmitHotelOrderRequestUserInfo extends $tea.Model {
|
|
|
1469
2775
|
[key: string]: any;
|
|
1470
2776
|
});
|
|
1471
2777
|
}
|
|
2778
|
+
export declare class UpdateHotelAlarmRequestAlarms extends $tea.Model {
|
|
2779
|
+
alarmId?: number;
|
|
2780
|
+
deviceOpenId?: string;
|
|
2781
|
+
roomNo?: string;
|
|
2782
|
+
userOpenId?: string;
|
|
2783
|
+
static names(): {
|
|
2784
|
+
[key: string]: string;
|
|
2785
|
+
};
|
|
2786
|
+
static types(): {
|
|
2787
|
+
[key: string]: any;
|
|
2788
|
+
};
|
|
2789
|
+
constructor(map?: {
|
|
2790
|
+
[key: string]: any;
|
|
2791
|
+
});
|
|
2792
|
+
}
|
|
2793
|
+
export declare class UpdateHotelAlarmRequestScheduleInfoOnce extends $tea.Model {
|
|
2794
|
+
day?: number;
|
|
2795
|
+
hour?: number;
|
|
2796
|
+
minute?: number;
|
|
2797
|
+
month?: number;
|
|
2798
|
+
year?: number;
|
|
2799
|
+
static names(): {
|
|
2800
|
+
[key: string]: string;
|
|
2801
|
+
};
|
|
2802
|
+
static types(): {
|
|
2803
|
+
[key: string]: any;
|
|
2804
|
+
};
|
|
2805
|
+
constructor(map?: {
|
|
2806
|
+
[key: string]: any;
|
|
2807
|
+
});
|
|
2808
|
+
}
|
|
2809
|
+
export declare class UpdateHotelAlarmRequestScheduleInfoWeekly extends $tea.Model {
|
|
2810
|
+
daysOfWeek?: number[];
|
|
2811
|
+
hour?: number;
|
|
2812
|
+
minute?: number;
|
|
2813
|
+
static names(): {
|
|
2814
|
+
[key: string]: string;
|
|
2815
|
+
};
|
|
2816
|
+
static types(): {
|
|
2817
|
+
[key: string]: any;
|
|
2818
|
+
};
|
|
2819
|
+
constructor(map?: {
|
|
2820
|
+
[key: string]: any;
|
|
2821
|
+
});
|
|
2822
|
+
}
|
|
2823
|
+
export declare class UpdateHotelAlarmRequestScheduleInfo extends $tea.Model {
|
|
2824
|
+
once?: UpdateHotelAlarmRequestScheduleInfoOnce;
|
|
2825
|
+
type?: string;
|
|
2826
|
+
weekly?: UpdateHotelAlarmRequestScheduleInfoWeekly;
|
|
2827
|
+
static names(): {
|
|
2828
|
+
[key: string]: string;
|
|
2829
|
+
};
|
|
2830
|
+
static types(): {
|
|
2831
|
+
[key: string]: any;
|
|
2832
|
+
};
|
|
2833
|
+
constructor(map?: {
|
|
2834
|
+
[key: string]: any;
|
|
2835
|
+
});
|
|
2836
|
+
}
|
|
1472
2837
|
export default class Client extends OpenApi {
|
|
1473
2838
|
constructor(config: $OpenApi.Config);
|
|
1474
2839
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
1475
2840
|
[key: string]: string;
|
|
1476
2841
|
}, endpoint: string): string;
|
|
2842
|
+
addMessageTemplate(request: AddMessageTemplateRequest): Promise<AddMessageTemplateResponse>;
|
|
2843
|
+
addMessageTemplateWithOptions(request: AddMessageTemplateRequest, headers: AddMessageTemplateHeaders, runtime: $Util.RuntimeOptions): Promise<AddMessageTemplateResponse>;
|
|
2844
|
+
batchAddHotelRoom(request: BatchAddHotelRoomRequest): Promise<BatchAddHotelRoomResponse>;
|
|
2845
|
+
batchAddHotelRoomWithOptions(tmpReq: BatchAddHotelRoomRequest, headers: BatchAddHotelRoomHeaders, runtime: $Util.RuntimeOptions): Promise<BatchAddHotelRoomResponse>;
|
|
2846
|
+
batchDeleteHotelRoom(request: BatchDeleteHotelRoomRequest): Promise<BatchDeleteHotelRoomResponse>;
|
|
2847
|
+
batchDeleteHotelRoomWithOptions(tmpReq: BatchDeleteHotelRoomRequest, headers: BatchDeleteHotelRoomHeaders, runtime: $Util.RuntimeOptions): Promise<BatchDeleteHotelRoomResponse>;
|
|
2848
|
+
createHotelAlarm(request: CreateHotelAlarmRequest): Promise<CreateHotelAlarmResponse>;
|
|
2849
|
+
createHotelAlarmWithOptions(tmpReq: CreateHotelAlarmRequest, headers: CreateHotelAlarmHeaders, runtime: $Util.RuntimeOptions): Promise<CreateHotelAlarmResponse>;
|
|
2850
|
+
deleteHotelAlarm(request: DeleteHotelAlarmRequest): Promise<DeleteHotelAlarmResponse>;
|
|
2851
|
+
deleteHotelAlarmWithOptions(tmpReq: DeleteHotelAlarmRequest, headers: DeleteHotelAlarmHeaders, runtime: $Util.RuntimeOptions): Promise<DeleteHotelAlarmResponse>;
|
|
1477
2852
|
deviceControl(request: DeviceControlRequest): Promise<DeviceControlResponse>;
|
|
1478
2853
|
deviceControlWithOptions(tmpReq: DeviceControlRequest, headers: DeviceControlHeaders, runtime: $Util.RuntimeOptions): Promise<DeviceControlResponse>;
|
|
1479
2854
|
getHotelHomeBackImageAndModes(request: GetHotelHomeBackImageAndModesRequest): Promise<GetHotelHomeBackImageAndModesResponse>;
|
|
1480
2855
|
getHotelHomeBackImageAndModesWithOptions(tmpReq: GetHotelHomeBackImageAndModesRequest, headers: GetHotelHomeBackImageAndModesHeaders, runtime: $Util.RuntimeOptions): Promise<GetHotelHomeBackImageAndModesResponse>;
|
|
2856
|
+
getHotelNotice(request: GetHotelNoticeRequest): Promise<GetHotelNoticeResponse>;
|
|
2857
|
+
getHotelNoticeWithOptions(tmpReq: GetHotelNoticeRequest, headers: GetHotelNoticeHeaders, runtime: $Util.RuntimeOptions): Promise<GetHotelNoticeResponse>;
|
|
1481
2858
|
getHotelOrderDetail(request: GetHotelOrderDetailRequest): Promise<GetHotelOrderDetailResponse>;
|
|
1482
2859
|
getHotelOrderDetailWithOptions(tmpReq: GetHotelOrderDetailRequest, headers: GetHotelOrderDetailHeaders, runtime: $Util.RuntimeOptions): Promise<GetHotelOrderDetailResponse>;
|
|
2860
|
+
getHotelRoomDevice(request: GetHotelRoomDeviceRequest): Promise<GetHotelRoomDeviceResponse>;
|
|
2861
|
+
getHotelRoomDeviceWithOptions(request: GetHotelRoomDeviceRequest, headers: GetHotelRoomDeviceHeaders, runtime: $Util.RuntimeOptions): Promise<GetHotelRoomDeviceResponse>;
|
|
1483
2862
|
getHotelSampleUtterances(request: GetHotelSampleUtterancesRequest): Promise<GetHotelSampleUtterancesResponse>;
|
|
1484
2863
|
getHotelSampleUtterancesWithOptions(tmpReq: GetHotelSampleUtterancesRequest, headers: GetHotelSampleUtterancesHeaders, runtime: $Util.RuntimeOptions): Promise<GetHotelSampleUtterancesResponse>;
|
|
1485
2864
|
getHotelScreenSaver(request: GetHotelScreenSaverRequest): Promise<GetHotelScreenSaverResponse>;
|
|
1486
2865
|
getHotelScreenSaverWithOptions(tmpReq: GetHotelScreenSaverRequest, headers: GetHotelScreenSaverHeaders, runtime: $Util.RuntimeOptions): Promise<GetHotelScreenSaverResponse>;
|
|
2866
|
+
importRoomControlDevices(request: ImportRoomControlDevicesRequest): Promise<ImportRoomControlDevicesResponse>;
|
|
2867
|
+
importRoomControlDevicesWithOptions(tmpReq: ImportRoomControlDevicesRequest, headers: ImportRoomControlDevicesHeaders, runtime: $Util.RuntimeOptions): Promise<ImportRoomControlDevicesResponse>;
|
|
2868
|
+
listHotelAlarm(request: ListHotelAlarmRequest): Promise<ListHotelAlarmResponse>;
|
|
2869
|
+
listHotelAlarmWithOptions(tmpReq: ListHotelAlarmRequest, headers: ListHotelAlarmHeaders, runtime: $Util.RuntimeOptions): Promise<ListHotelAlarmResponse>;
|
|
1487
2870
|
listHotelControlDevice(request: ListHotelControlDeviceRequest): Promise<ListHotelControlDeviceResponse>;
|
|
1488
2871
|
listHotelControlDeviceWithOptions(tmpReq: ListHotelControlDeviceRequest, headers: ListHotelControlDeviceHeaders, runtime: $Util.RuntimeOptions): Promise<ListHotelControlDeviceResponse>;
|
|
2872
|
+
listHotelInfo(): Promise<ListHotelInfoResponse>;
|
|
2873
|
+
listHotelInfoWithOptions(headers: ListHotelInfoHeaders, runtime: $Util.RuntimeOptions): Promise<ListHotelInfoResponse>;
|
|
2874
|
+
listHotelMessageTemplate(): Promise<ListHotelMessageTemplateResponse>;
|
|
2875
|
+
listHotelMessageTemplateWithOptions(headers: ListHotelMessageTemplateHeaders, runtime: $Util.RuntimeOptions): Promise<ListHotelMessageTemplateResponse>;
|
|
1489
2876
|
listHotelOrder(request: ListHotelOrderRequest): Promise<ListHotelOrderResponse>;
|
|
1490
2877
|
listHotelOrderWithOptions(tmpReq: ListHotelOrderRequest, headers: ListHotelOrderHeaders, runtime: $Util.RuntimeOptions): Promise<ListHotelOrderResponse>;
|
|
2878
|
+
listHotelRooms(request: ListHotelRoomsRequest): Promise<ListHotelRoomsResponse>;
|
|
2879
|
+
listHotelRoomsWithOptions(request: ListHotelRoomsRequest, headers: ListHotelRoomsHeaders, runtime: $Util.RuntimeOptions): Promise<ListHotelRoomsResponse>;
|
|
1491
2880
|
listHotelSceneItem(request: ListHotelSceneItemRequest): Promise<ListHotelSceneItemResponse>;
|
|
1492
2881
|
listHotelSceneItemWithOptions(tmpReq: ListHotelSceneItemRequest, headers: ListHotelSceneItemHeaders, runtime: $Util.RuntimeOptions): Promise<ListHotelSceneItemResponse>;
|
|
1493
2882
|
listHotelServiceCategory(request: ListHotelServiceCategoryRequest): Promise<ListHotelServiceCategoryResponse>;
|
|
1494
2883
|
listHotelServiceCategoryWithOptions(tmpReq: ListHotelServiceCategoryRequest, headers: ListHotelServiceCategoryHeaders, runtime: $Util.RuntimeOptions): Promise<ListHotelServiceCategoryResponse>;
|
|
2884
|
+
pushHotelMessage(request: PushHotelMessageRequest): Promise<PushHotelMessageResponse>;
|
|
2885
|
+
pushHotelMessageWithOptions(tmpReq: PushHotelMessageRequest, headers: PushHotelMessageHeaders, runtime: $Util.RuntimeOptions): Promise<PushHotelMessageResponse>;
|
|
1495
2886
|
queryDeviceStatus(request: QueryDeviceStatusRequest): Promise<QueryDeviceStatusResponse>;
|
|
1496
2887
|
queryDeviceStatusWithOptions(tmpReq: QueryDeviceStatusRequest, headers: QueryDeviceStatusHeaders, runtime: $Util.RuntimeOptions): Promise<QueryDeviceStatusResponse>;
|
|
1497
2888
|
queryHotelProduct(request: QueryHotelProductRequest): Promise<QueryHotelProductResponse>;
|
|
1498
2889
|
queryHotelProductWithOptions(tmpReq: QueryHotelProductRequest, headers: QueryHotelProductHeaders, runtime: $Util.RuntimeOptions): Promise<QueryHotelProductResponse>;
|
|
2890
|
+
queryRoomControlDevices(request: QueryRoomControlDevicesRequest): Promise<QueryRoomControlDevicesResponse>;
|
|
2891
|
+
queryRoomControlDevicesWithOptions(request: QueryRoomControlDevicesRequest, headers: QueryRoomControlDevicesHeaders, runtime: $Util.RuntimeOptions): Promise<QueryRoomControlDevicesResponse>;
|
|
1499
2892
|
roomCheckOut(request: RoomCheckOutRequest): Promise<RoomCheckOutResponse>;
|
|
1500
2893
|
roomCheckOutWithOptions(tmpReq: RoomCheckOutRequest, headers: RoomCheckOutHeaders, runtime: $Util.RuntimeOptions): Promise<RoomCheckOutResponse>;
|
|
1501
2894
|
submitHotelOrder(request: SubmitHotelOrderRequest): Promise<SubmitHotelOrderResponse>;
|
|
1502
2895
|
submitHotelOrderWithOptions(tmpReq: SubmitHotelOrderRequest, headers: SubmitHotelOrderHeaders, runtime: $Util.RuntimeOptions): Promise<SubmitHotelOrderResponse>;
|
|
2896
|
+
updateHotelAlarm(request: UpdateHotelAlarmRequest): Promise<UpdateHotelAlarmResponse>;
|
|
2897
|
+
updateHotelAlarmWithOptions(tmpReq: UpdateHotelAlarmRequest, headers: UpdateHotelAlarmHeaders, runtime: $Util.RuntimeOptions): Promise<UpdateHotelAlarmResponse>;
|
|
1503
2898
|
}
|