@alicloud/tdsr20200101 3.0.8 → 3.1.0
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 +427 -1
- package/dist/client.js +792 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1007 -16
package/src/client.ts
CHANGED
|
@@ -63,10 +63,12 @@ export class AddMosaicsResponseBody extends $tea.Model {
|
|
|
63
63
|
|
|
64
64
|
export class AddMosaicsResponse extends $tea.Model {
|
|
65
65
|
headers: { [key: string]: string };
|
|
66
|
+
statusCode: number;
|
|
66
67
|
body: AddMosaicsResponseBody;
|
|
67
68
|
static names(): { [key: string]: string } {
|
|
68
69
|
return {
|
|
69
70
|
headers: 'headers',
|
|
71
|
+
statusCode: 'statusCode',
|
|
70
72
|
body: 'body',
|
|
71
73
|
};
|
|
72
74
|
}
|
|
@@ -74,6 +76,7 @@ export class AddMosaicsResponse extends $tea.Model {
|
|
|
74
76
|
static types(): { [key: string]: any } {
|
|
75
77
|
return {
|
|
76
78
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
79
|
+
statusCode: 'number',
|
|
77
80
|
body: AddMosaicsResponseBody,
|
|
78
81
|
};
|
|
79
82
|
}
|
|
@@ -138,10 +141,12 @@ export class AddProjectResponseBody extends $tea.Model {
|
|
|
138
141
|
|
|
139
142
|
export class AddProjectResponse extends $tea.Model {
|
|
140
143
|
headers: { [key: string]: string };
|
|
144
|
+
statusCode: number;
|
|
141
145
|
body: AddProjectResponseBody;
|
|
142
146
|
static names(): { [key: string]: string } {
|
|
143
147
|
return {
|
|
144
148
|
headers: 'headers',
|
|
149
|
+
statusCode: 'statusCode',
|
|
145
150
|
body: 'body',
|
|
146
151
|
};
|
|
147
152
|
}
|
|
@@ -149,6 +154,7 @@ export class AddProjectResponse extends $tea.Model {
|
|
|
149
154
|
static types(): { [key: string]: any } {
|
|
150
155
|
return {
|
|
151
156
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
157
|
+
statusCode: 'number',
|
|
152
158
|
body: AddProjectResponseBody,
|
|
153
159
|
};
|
|
154
160
|
}
|
|
@@ -210,10 +216,12 @@ export class AddRelativePositionResponseBody extends $tea.Model {
|
|
|
210
216
|
|
|
211
217
|
export class AddRelativePositionResponse extends $tea.Model {
|
|
212
218
|
headers: { [key: string]: string };
|
|
219
|
+
statusCode: number;
|
|
213
220
|
body: AddRelativePositionResponseBody;
|
|
214
221
|
static names(): { [key: string]: string } {
|
|
215
222
|
return {
|
|
216
223
|
headers: 'headers',
|
|
224
|
+
statusCode: 'statusCode',
|
|
217
225
|
body: 'body',
|
|
218
226
|
};
|
|
219
227
|
}
|
|
@@ -221,6 +229,7 @@ export class AddRelativePositionResponse extends $tea.Model {
|
|
|
221
229
|
static types(): { [key: string]: any } {
|
|
222
230
|
return {
|
|
223
231
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
232
|
+
statusCode: 'number',
|
|
224
233
|
body: AddRelativePositionResponseBody,
|
|
225
234
|
};
|
|
226
235
|
}
|
|
@@ -282,10 +291,12 @@ export class AddRoomPlanResponseBody extends $tea.Model {
|
|
|
282
291
|
|
|
283
292
|
export class AddRoomPlanResponse extends $tea.Model {
|
|
284
293
|
headers: { [key: string]: string };
|
|
294
|
+
statusCode: number;
|
|
285
295
|
body: AddRoomPlanResponseBody;
|
|
286
296
|
static names(): { [key: string]: string } {
|
|
287
297
|
return {
|
|
288
298
|
headers: 'headers',
|
|
299
|
+
statusCode: 'statusCode',
|
|
289
300
|
body: 'body',
|
|
290
301
|
};
|
|
291
302
|
}
|
|
@@ -293,6 +304,7 @@ export class AddRoomPlanResponse extends $tea.Model {
|
|
|
293
304
|
static types(): { [key: string]: any } {
|
|
294
305
|
return {
|
|
295
306
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
307
|
+
statusCode: 'number',
|
|
296
308
|
body: AddRoomPlanResponseBody,
|
|
297
309
|
};
|
|
298
310
|
}
|
|
@@ -363,10 +375,12 @@ export class AddSceneResponseBody extends $tea.Model {
|
|
|
363
375
|
|
|
364
376
|
export class AddSceneResponse extends $tea.Model {
|
|
365
377
|
headers: { [key: string]: string };
|
|
378
|
+
statusCode: number;
|
|
366
379
|
body: AddSceneResponseBody;
|
|
367
380
|
static names(): { [key: string]: string } {
|
|
368
381
|
return {
|
|
369
382
|
headers: 'headers',
|
|
383
|
+
statusCode: 'statusCode',
|
|
370
384
|
body: 'body',
|
|
371
385
|
};
|
|
372
386
|
}
|
|
@@ -374,6 +388,7 @@ export class AddSceneResponse extends $tea.Model {
|
|
|
374
388
|
static types(): { [key: string]: any } {
|
|
375
389
|
return {
|
|
376
390
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
391
|
+
statusCode: 'number',
|
|
377
392
|
body: AddSceneResponseBody,
|
|
378
393
|
};
|
|
379
394
|
}
|
|
@@ -441,10 +456,12 @@ export class AddSubSceneResponseBody extends $tea.Model {
|
|
|
441
456
|
|
|
442
457
|
export class AddSubSceneResponse extends $tea.Model {
|
|
443
458
|
headers: { [key: string]: string };
|
|
459
|
+
statusCode: number;
|
|
444
460
|
body: AddSubSceneResponseBody;
|
|
445
461
|
static names(): { [key: string]: string } {
|
|
446
462
|
return {
|
|
447
463
|
headers: 'headers',
|
|
464
|
+
statusCode: 'statusCode',
|
|
448
465
|
body: 'body',
|
|
449
466
|
};
|
|
450
467
|
}
|
|
@@ -452,6 +469,7 @@ export class AddSubSceneResponse extends $tea.Model {
|
|
|
452
469
|
static types(): { [key: string]: any } {
|
|
453
470
|
return {
|
|
454
471
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
472
|
+
statusCode: 'number',
|
|
455
473
|
body: AddSubSceneResponseBody,
|
|
456
474
|
};
|
|
457
475
|
}
|
|
@@ -513,10 +531,12 @@ export class CheckUserPropertyResponseBody extends $tea.Model {
|
|
|
513
531
|
|
|
514
532
|
export class CheckUserPropertyResponse extends $tea.Model {
|
|
515
533
|
headers: { [key: string]: string };
|
|
534
|
+
statusCode: number;
|
|
516
535
|
body: CheckUserPropertyResponseBody;
|
|
517
536
|
static names(): { [key: string]: string } {
|
|
518
537
|
return {
|
|
519
538
|
headers: 'headers',
|
|
539
|
+
statusCode: 'statusCode',
|
|
520
540
|
body: 'body',
|
|
521
541
|
};
|
|
522
542
|
}
|
|
@@ -524,6 +544,7 @@ export class CheckUserPropertyResponse extends $tea.Model {
|
|
|
524
544
|
static types(): { [key: string]: any } {
|
|
525
545
|
return {
|
|
526
546
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
547
|
+
statusCode: 'number',
|
|
527
548
|
body: CheckUserPropertyResponseBody,
|
|
528
549
|
};
|
|
529
550
|
}
|
|
@@ -533,6 +554,84 @@ export class CheckUserPropertyResponse extends $tea.Model {
|
|
|
533
554
|
}
|
|
534
555
|
}
|
|
535
556
|
|
|
557
|
+
export class CopySceneRequest extends $tea.Model {
|
|
558
|
+
sceneId?: string;
|
|
559
|
+
sceneName?: string;
|
|
560
|
+
static names(): { [key: string]: string } {
|
|
561
|
+
return {
|
|
562
|
+
sceneId: 'SceneId',
|
|
563
|
+
sceneName: 'SceneName',
|
|
564
|
+
};
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
static types(): { [key: string]: any } {
|
|
568
|
+
return {
|
|
569
|
+
sceneId: 'string',
|
|
570
|
+
sceneName: 'string',
|
|
571
|
+
};
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
constructor(map?: { [key: string]: any }) {
|
|
575
|
+
super(map);
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
export class CopySceneResponseBody extends $tea.Model {
|
|
580
|
+
code?: number;
|
|
581
|
+
data?: CopySceneResponseBodyData;
|
|
582
|
+
message?: string;
|
|
583
|
+
requestId?: string;
|
|
584
|
+
success?: boolean;
|
|
585
|
+
static names(): { [key: string]: string } {
|
|
586
|
+
return {
|
|
587
|
+
code: 'Code',
|
|
588
|
+
data: 'Data',
|
|
589
|
+
message: 'Message',
|
|
590
|
+
requestId: 'RequestId',
|
|
591
|
+
success: 'Success',
|
|
592
|
+
};
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
static types(): { [key: string]: any } {
|
|
596
|
+
return {
|
|
597
|
+
code: 'number',
|
|
598
|
+
data: CopySceneResponseBodyData,
|
|
599
|
+
message: 'string',
|
|
600
|
+
requestId: 'string',
|
|
601
|
+
success: 'boolean',
|
|
602
|
+
};
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
constructor(map?: { [key: string]: any }) {
|
|
606
|
+
super(map);
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
export class CopySceneResponse extends $tea.Model {
|
|
611
|
+
headers: { [key: string]: string };
|
|
612
|
+
statusCode: number;
|
|
613
|
+
body: CopySceneResponseBody;
|
|
614
|
+
static names(): { [key: string]: string } {
|
|
615
|
+
return {
|
|
616
|
+
headers: 'headers',
|
|
617
|
+
statusCode: 'statusCode',
|
|
618
|
+
body: 'body',
|
|
619
|
+
};
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
static types(): { [key: string]: any } {
|
|
623
|
+
return {
|
|
624
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
625
|
+
statusCode: 'number',
|
|
626
|
+
body: CopySceneResponseBody,
|
|
627
|
+
};
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
constructor(map?: { [key: string]: any }) {
|
|
631
|
+
super(map);
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
|
|
536
635
|
export class DetailProjectRequest extends $tea.Model {
|
|
537
636
|
id?: string;
|
|
538
637
|
static names(): { [key: string]: string } {
|
|
@@ -603,10 +702,12 @@ export class DetailProjectResponseBody extends $tea.Model {
|
|
|
603
702
|
|
|
604
703
|
export class DetailProjectResponse extends $tea.Model {
|
|
605
704
|
headers: { [key: string]: string };
|
|
705
|
+
statusCode: number;
|
|
606
706
|
body: DetailProjectResponseBody;
|
|
607
707
|
static names(): { [key: string]: string } {
|
|
608
708
|
return {
|
|
609
709
|
headers: 'headers',
|
|
710
|
+
statusCode: 'statusCode',
|
|
610
711
|
body: 'body',
|
|
611
712
|
};
|
|
612
713
|
}
|
|
@@ -614,6 +715,7 @@ export class DetailProjectResponse extends $tea.Model {
|
|
|
614
715
|
static types(): { [key: string]: any } {
|
|
615
716
|
return {
|
|
616
717
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
718
|
+
statusCode: 'number',
|
|
617
719
|
body: DetailProjectResponseBody,
|
|
618
720
|
};
|
|
619
721
|
}
|
|
@@ -699,10 +801,12 @@ export class DetailSceneResponseBody extends $tea.Model {
|
|
|
699
801
|
|
|
700
802
|
export class DetailSceneResponse extends $tea.Model {
|
|
701
803
|
headers: { [key: string]: string };
|
|
804
|
+
statusCode: number;
|
|
702
805
|
body: DetailSceneResponseBody;
|
|
703
806
|
static names(): { [key: string]: string } {
|
|
704
807
|
return {
|
|
705
808
|
headers: 'headers',
|
|
809
|
+
statusCode: 'statusCode',
|
|
706
810
|
body: 'body',
|
|
707
811
|
};
|
|
708
812
|
}
|
|
@@ -710,6 +814,7 @@ export class DetailSceneResponse extends $tea.Model {
|
|
|
710
814
|
static types(): { [key: string]: any } {
|
|
711
815
|
return {
|
|
712
816
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
817
|
+
statusCode: 'number',
|
|
713
818
|
body: DetailSceneResponseBody,
|
|
714
819
|
};
|
|
715
820
|
}
|
|
@@ -807,10 +912,12 @@ export class DetailSubSceneResponseBody extends $tea.Model {
|
|
|
807
912
|
|
|
808
913
|
export class DetailSubSceneResponse extends $tea.Model {
|
|
809
914
|
headers: { [key: string]: string };
|
|
915
|
+
statusCode: number;
|
|
810
916
|
body: DetailSubSceneResponseBody;
|
|
811
917
|
static names(): { [key: string]: string } {
|
|
812
918
|
return {
|
|
813
919
|
headers: 'headers',
|
|
920
|
+
statusCode: 'statusCode',
|
|
814
921
|
body: 'body',
|
|
815
922
|
};
|
|
816
923
|
}
|
|
@@ -818,6 +925,7 @@ export class DetailSubSceneResponse extends $tea.Model {
|
|
|
818
925
|
static types(): { [key: string]: any } {
|
|
819
926
|
return {
|
|
820
927
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
928
|
+
statusCode: 'number',
|
|
821
929
|
body: DetailSubSceneResponseBody,
|
|
822
930
|
};
|
|
823
931
|
}
|
|
@@ -876,10 +984,12 @@ export class DropProjectResponseBody extends $tea.Model {
|
|
|
876
984
|
|
|
877
985
|
export class DropProjectResponse extends $tea.Model {
|
|
878
986
|
headers: { [key: string]: string };
|
|
987
|
+
statusCode: number;
|
|
879
988
|
body: DropProjectResponseBody;
|
|
880
989
|
static names(): { [key: string]: string } {
|
|
881
990
|
return {
|
|
882
991
|
headers: 'headers',
|
|
992
|
+
statusCode: 'statusCode',
|
|
883
993
|
body: 'body',
|
|
884
994
|
};
|
|
885
995
|
}
|
|
@@ -887,6 +997,7 @@ export class DropProjectResponse extends $tea.Model {
|
|
|
887
997
|
static types(): { [key: string]: any } {
|
|
888
998
|
return {
|
|
889
999
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1000
|
+
statusCode: 'number',
|
|
890
1001
|
body: DropProjectResponseBody,
|
|
891
1002
|
};
|
|
892
1003
|
}
|
|
@@ -945,10 +1056,12 @@ export class DropSceneResponseBody extends $tea.Model {
|
|
|
945
1056
|
|
|
946
1057
|
export class DropSceneResponse extends $tea.Model {
|
|
947
1058
|
headers: { [key: string]: string };
|
|
1059
|
+
statusCode: number;
|
|
948
1060
|
body: DropSceneResponseBody;
|
|
949
1061
|
static names(): { [key: string]: string } {
|
|
950
1062
|
return {
|
|
951
1063
|
headers: 'headers',
|
|
1064
|
+
statusCode: 'statusCode',
|
|
952
1065
|
body: 'body',
|
|
953
1066
|
};
|
|
954
1067
|
}
|
|
@@ -956,6 +1069,7 @@ export class DropSceneResponse extends $tea.Model {
|
|
|
956
1069
|
static types(): { [key: string]: any } {
|
|
957
1070
|
return {
|
|
958
1071
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1072
|
+
statusCode: 'number',
|
|
959
1073
|
body: DropSceneResponseBody,
|
|
960
1074
|
};
|
|
961
1075
|
}
|
|
@@ -1014,10 +1128,12 @@ export class DropSubSceneResponseBody extends $tea.Model {
|
|
|
1014
1128
|
|
|
1015
1129
|
export class DropSubSceneResponse extends $tea.Model {
|
|
1016
1130
|
headers: { [key: string]: string };
|
|
1131
|
+
statusCode: number;
|
|
1017
1132
|
body: DropSubSceneResponseBody;
|
|
1018
1133
|
static names(): { [key: string]: string } {
|
|
1019
1134
|
return {
|
|
1020
1135
|
headers: 'headers',
|
|
1136
|
+
statusCode: 'statusCode',
|
|
1021
1137
|
body: 'body',
|
|
1022
1138
|
};
|
|
1023
1139
|
}
|
|
@@ -1025,6 +1141,7 @@ export class DropSubSceneResponse extends $tea.Model {
|
|
|
1025
1141
|
static types(): { [key: string]: any } {
|
|
1026
1142
|
return {
|
|
1027
1143
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1144
|
+
statusCode: 'number',
|
|
1028
1145
|
body: DropSubSceneResponseBody,
|
|
1029
1146
|
};
|
|
1030
1147
|
}
|
|
@@ -1092,10 +1209,12 @@ export class GetConnDataResponseBody extends $tea.Model {
|
|
|
1092
1209
|
|
|
1093
1210
|
export class GetConnDataResponse extends $tea.Model {
|
|
1094
1211
|
headers: { [key: string]: string };
|
|
1212
|
+
statusCode: number;
|
|
1095
1213
|
body: GetConnDataResponseBody;
|
|
1096
1214
|
static names(): { [key: string]: string } {
|
|
1097
1215
|
return {
|
|
1098
1216
|
headers: 'headers',
|
|
1217
|
+
statusCode: 'statusCode',
|
|
1099
1218
|
body: 'body',
|
|
1100
1219
|
};
|
|
1101
1220
|
}
|
|
@@ -1103,6 +1222,7 @@ export class GetConnDataResponse extends $tea.Model {
|
|
|
1103
1222
|
static types(): { [key: string]: any } {
|
|
1104
1223
|
return {
|
|
1105
1224
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1225
|
+
statusCode: 'number',
|
|
1106
1226
|
body: GetConnDataResponseBody,
|
|
1107
1227
|
};
|
|
1108
1228
|
}
|
|
@@ -1112,6 +1232,81 @@ export class GetConnDataResponse extends $tea.Model {
|
|
|
1112
1232
|
}
|
|
1113
1233
|
}
|
|
1114
1234
|
|
|
1235
|
+
export class GetCopySceneTaskStatusRequest extends $tea.Model {
|
|
1236
|
+
taskId?: string;
|
|
1237
|
+
static names(): { [key: string]: string } {
|
|
1238
|
+
return {
|
|
1239
|
+
taskId: 'TaskId',
|
|
1240
|
+
};
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
static types(): { [key: string]: any } {
|
|
1244
|
+
return {
|
|
1245
|
+
taskId: 'string',
|
|
1246
|
+
};
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
constructor(map?: { [key: string]: any }) {
|
|
1250
|
+
super(map);
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
export class GetCopySceneTaskStatusResponseBody extends $tea.Model {
|
|
1255
|
+
code?: number;
|
|
1256
|
+
data?: GetCopySceneTaskStatusResponseBodyData;
|
|
1257
|
+
message?: string;
|
|
1258
|
+
requestId?: string;
|
|
1259
|
+
success?: boolean;
|
|
1260
|
+
static names(): { [key: string]: string } {
|
|
1261
|
+
return {
|
|
1262
|
+
code: 'Code',
|
|
1263
|
+
data: 'Data',
|
|
1264
|
+
message: 'Message',
|
|
1265
|
+
requestId: 'RequestId',
|
|
1266
|
+
success: 'Success',
|
|
1267
|
+
};
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
static types(): { [key: string]: any } {
|
|
1271
|
+
return {
|
|
1272
|
+
code: 'number',
|
|
1273
|
+
data: GetCopySceneTaskStatusResponseBodyData,
|
|
1274
|
+
message: 'string',
|
|
1275
|
+
requestId: 'string',
|
|
1276
|
+
success: 'boolean',
|
|
1277
|
+
};
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
constructor(map?: { [key: string]: any }) {
|
|
1281
|
+
super(map);
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
export class GetCopySceneTaskStatusResponse extends $tea.Model {
|
|
1286
|
+
headers: { [key: string]: string };
|
|
1287
|
+
statusCode: number;
|
|
1288
|
+
body: GetCopySceneTaskStatusResponseBody;
|
|
1289
|
+
static names(): { [key: string]: string } {
|
|
1290
|
+
return {
|
|
1291
|
+
headers: 'headers',
|
|
1292
|
+
statusCode: 'statusCode',
|
|
1293
|
+
body: 'body',
|
|
1294
|
+
};
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
static types(): { [key: string]: any } {
|
|
1298
|
+
return {
|
|
1299
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1300
|
+
statusCode: 'number',
|
|
1301
|
+
body: GetCopySceneTaskStatusResponseBody,
|
|
1302
|
+
};
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
constructor(map?: { [key: string]: any }) {
|
|
1306
|
+
super(map);
|
|
1307
|
+
}
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1115
1310
|
export class GetHotspotConfigRequest extends $tea.Model {
|
|
1116
1311
|
domain?: string;
|
|
1117
1312
|
enabled?: boolean;
|
|
@@ -1173,10 +1368,12 @@ export class GetHotspotConfigResponseBody extends $tea.Model {
|
|
|
1173
1368
|
|
|
1174
1369
|
export class GetHotspotConfigResponse extends $tea.Model {
|
|
1175
1370
|
headers: { [key: string]: string };
|
|
1371
|
+
statusCode: number;
|
|
1176
1372
|
body: GetHotspotConfigResponseBody;
|
|
1177
1373
|
static names(): { [key: string]: string } {
|
|
1178
1374
|
return {
|
|
1179
1375
|
headers: 'headers',
|
|
1376
|
+
statusCode: 'statusCode',
|
|
1180
1377
|
body: 'body',
|
|
1181
1378
|
};
|
|
1182
1379
|
}
|
|
@@ -1184,6 +1381,7 @@ export class GetHotspotConfigResponse extends $tea.Model {
|
|
|
1184
1381
|
static types(): { [key: string]: any } {
|
|
1185
1382
|
return {
|
|
1186
1383
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1384
|
+
statusCode: 'number',
|
|
1187
1385
|
body: GetHotspotConfigResponseBody,
|
|
1188
1386
|
};
|
|
1189
1387
|
}
|
|
@@ -1254,10 +1452,12 @@ export class GetHotspotSceneDataResponseBody extends $tea.Model {
|
|
|
1254
1452
|
|
|
1255
1453
|
export class GetHotspotSceneDataResponse extends $tea.Model {
|
|
1256
1454
|
headers: { [key: string]: string };
|
|
1455
|
+
statusCode: number;
|
|
1257
1456
|
body: GetHotspotSceneDataResponseBody;
|
|
1258
1457
|
static names(): { [key: string]: string } {
|
|
1259
1458
|
return {
|
|
1260
1459
|
headers: 'headers',
|
|
1460
|
+
statusCode: 'statusCode',
|
|
1261
1461
|
body: 'body',
|
|
1262
1462
|
};
|
|
1263
1463
|
}
|
|
@@ -1265,6 +1465,7 @@ export class GetHotspotSceneDataResponse extends $tea.Model {
|
|
|
1265
1465
|
static types(): { [key: string]: any } {
|
|
1266
1466
|
return {
|
|
1267
1467
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1468
|
+
statusCode: 'number',
|
|
1268
1469
|
body: GetHotspotSceneDataResponseBody,
|
|
1269
1470
|
};
|
|
1270
1471
|
}
|
|
@@ -1338,10 +1539,12 @@ export class GetHotspotTagResponseBody extends $tea.Model {
|
|
|
1338
1539
|
|
|
1339
1540
|
export class GetHotspotTagResponse extends $tea.Model {
|
|
1340
1541
|
headers: { [key: string]: string };
|
|
1542
|
+
statusCode: number;
|
|
1341
1543
|
body: GetHotspotTagResponseBody;
|
|
1342
1544
|
static names(): { [key: string]: string } {
|
|
1343
1545
|
return {
|
|
1344
1546
|
headers: 'headers',
|
|
1547
|
+
statusCode: 'statusCode',
|
|
1345
1548
|
body: 'body',
|
|
1346
1549
|
};
|
|
1347
1550
|
}
|
|
@@ -1349,6 +1552,7 @@ export class GetHotspotTagResponse extends $tea.Model {
|
|
|
1349
1552
|
static types(): { [key: string]: any } {
|
|
1350
1553
|
return {
|
|
1351
1554
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1555
|
+
statusCode: 'number',
|
|
1352
1556
|
body: GetHotspotTagResponseBody,
|
|
1353
1557
|
};
|
|
1354
1558
|
}
|
|
@@ -1410,10 +1614,12 @@ export class GetLayoutDataResponseBody extends $tea.Model {
|
|
|
1410
1614
|
|
|
1411
1615
|
export class GetLayoutDataResponse extends $tea.Model {
|
|
1412
1616
|
headers: { [key: string]: string };
|
|
1617
|
+
statusCode: number;
|
|
1413
1618
|
body: GetLayoutDataResponseBody;
|
|
1414
1619
|
static names(): { [key: string]: string } {
|
|
1415
1620
|
return {
|
|
1416
1621
|
headers: 'headers',
|
|
1622
|
+
statusCode: 'statusCode',
|
|
1417
1623
|
body: 'body',
|
|
1418
1624
|
};
|
|
1419
1625
|
}
|
|
@@ -1421,6 +1627,7 @@ export class GetLayoutDataResponse extends $tea.Model {
|
|
|
1421
1627
|
static types(): { [key: string]: any } {
|
|
1422
1628
|
return {
|
|
1423
1629
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1630
|
+
statusCode: 'number',
|
|
1424
1631
|
body: GetLayoutDataResponseBody,
|
|
1425
1632
|
};
|
|
1426
1633
|
}
|
|
@@ -1482,10 +1689,12 @@ export class GetOriginLayoutDataResponseBody extends $tea.Model {
|
|
|
1482
1689
|
|
|
1483
1690
|
export class GetOriginLayoutDataResponse extends $tea.Model {
|
|
1484
1691
|
headers: { [key: string]: string };
|
|
1692
|
+
statusCode: number;
|
|
1485
1693
|
body: GetOriginLayoutDataResponseBody;
|
|
1486
1694
|
static names(): { [key: string]: string } {
|
|
1487
1695
|
return {
|
|
1488
1696
|
headers: 'headers',
|
|
1697
|
+
statusCode: 'statusCode',
|
|
1489
1698
|
body: 'body',
|
|
1490
1699
|
};
|
|
1491
1700
|
}
|
|
@@ -1493,6 +1702,7 @@ export class GetOriginLayoutDataResponse extends $tea.Model {
|
|
|
1493
1702
|
static types(): { [key: string]: any } {
|
|
1494
1703
|
return {
|
|
1495
1704
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1705
|
+
statusCode: 'number',
|
|
1496
1706
|
body: GetOriginLayoutDataResponseBody,
|
|
1497
1707
|
};
|
|
1498
1708
|
}
|
|
@@ -1572,10 +1782,12 @@ export class GetOssPolicyResponseBody extends $tea.Model {
|
|
|
1572
1782
|
|
|
1573
1783
|
export class GetOssPolicyResponse extends $tea.Model {
|
|
1574
1784
|
headers: { [key: string]: string };
|
|
1785
|
+
statusCode: number;
|
|
1575
1786
|
body: GetOssPolicyResponseBody;
|
|
1576
1787
|
static names(): { [key: string]: string } {
|
|
1577
1788
|
return {
|
|
1578
1789
|
headers: 'headers',
|
|
1790
|
+
statusCode: 'statusCode',
|
|
1579
1791
|
body: 'body',
|
|
1580
1792
|
};
|
|
1581
1793
|
}
|
|
@@ -1583,6 +1795,7 @@ export class GetOssPolicyResponse extends $tea.Model {
|
|
|
1583
1795
|
static types(): { [key: string]: any } {
|
|
1584
1796
|
return {
|
|
1585
1797
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1798
|
+
statusCode: 'number',
|
|
1586
1799
|
body: GetOssPolicyResponseBody,
|
|
1587
1800
|
};
|
|
1588
1801
|
}
|
|
@@ -1592,6 +1805,84 @@ export class GetOssPolicyResponse extends $tea.Model {
|
|
|
1592
1805
|
}
|
|
1593
1806
|
}
|
|
1594
1807
|
|
|
1808
|
+
export class GetPackSceneTaskStatusRequest extends $tea.Model {
|
|
1809
|
+
taskId?: string;
|
|
1810
|
+
type?: string;
|
|
1811
|
+
static names(): { [key: string]: string } {
|
|
1812
|
+
return {
|
|
1813
|
+
taskId: 'TaskId',
|
|
1814
|
+
type: 'Type',
|
|
1815
|
+
};
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
static types(): { [key: string]: any } {
|
|
1819
|
+
return {
|
|
1820
|
+
taskId: 'string',
|
|
1821
|
+
type: 'string',
|
|
1822
|
+
};
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
constructor(map?: { [key: string]: any }) {
|
|
1826
|
+
super(map);
|
|
1827
|
+
}
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
export class GetPackSceneTaskStatusResponseBody extends $tea.Model {
|
|
1831
|
+
code?: number;
|
|
1832
|
+
data?: GetPackSceneTaskStatusResponseBodyData;
|
|
1833
|
+
message?: string;
|
|
1834
|
+
requestId?: string;
|
|
1835
|
+
success?: boolean;
|
|
1836
|
+
static names(): { [key: string]: string } {
|
|
1837
|
+
return {
|
|
1838
|
+
code: 'Code',
|
|
1839
|
+
data: 'Data',
|
|
1840
|
+
message: 'Message',
|
|
1841
|
+
requestId: 'RequestId',
|
|
1842
|
+
success: 'Success',
|
|
1843
|
+
};
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
static types(): { [key: string]: any } {
|
|
1847
|
+
return {
|
|
1848
|
+
code: 'number',
|
|
1849
|
+
data: GetPackSceneTaskStatusResponseBodyData,
|
|
1850
|
+
message: 'string',
|
|
1851
|
+
requestId: 'string',
|
|
1852
|
+
success: 'boolean',
|
|
1853
|
+
};
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1856
|
+
constructor(map?: { [key: string]: any }) {
|
|
1857
|
+
super(map);
|
|
1858
|
+
}
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1861
|
+
export class GetPackSceneTaskStatusResponse extends $tea.Model {
|
|
1862
|
+
headers: { [key: string]: string };
|
|
1863
|
+
statusCode: number;
|
|
1864
|
+
body: GetPackSceneTaskStatusResponseBody;
|
|
1865
|
+
static names(): { [key: string]: string } {
|
|
1866
|
+
return {
|
|
1867
|
+
headers: 'headers',
|
|
1868
|
+
statusCode: 'statusCode',
|
|
1869
|
+
body: 'body',
|
|
1870
|
+
};
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
static types(): { [key: string]: any } {
|
|
1874
|
+
return {
|
|
1875
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1876
|
+
statusCode: 'number',
|
|
1877
|
+
body: GetPackSceneTaskStatusResponseBody,
|
|
1878
|
+
};
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
constructor(map?: { [key: string]: any }) {
|
|
1882
|
+
super(map);
|
|
1883
|
+
}
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1595
1886
|
export class GetRectifyImageRequest extends $tea.Model {
|
|
1596
1887
|
subSceneId?: string;
|
|
1597
1888
|
static names(): { [key: string]: string } {
|
|
@@ -1644,10 +1935,12 @@ export class GetRectifyImageResponseBody extends $tea.Model {
|
|
|
1644
1935
|
|
|
1645
1936
|
export class GetRectifyImageResponse extends $tea.Model {
|
|
1646
1937
|
headers: { [key: string]: string };
|
|
1938
|
+
statusCode: number;
|
|
1647
1939
|
body: GetRectifyImageResponseBody;
|
|
1648
1940
|
static names(): { [key: string]: string } {
|
|
1649
1941
|
return {
|
|
1650
1942
|
headers: 'headers',
|
|
1943
|
+
statusCode: 'statusCode',
|
|
1651
1944
|
body: 'body',
|
|
1652
1945
|
};
|
|
1653
1946
|
}
|
|
@@ -1655,6 +1948,7 @@ export class GetRectifyImageResponse extends $tea.Model {
|
|
|
1655
1948
|
static types(): { [key: string]: any } {
|
|
1656
1949
|
return {
|
|
1657
1950
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1951
|
+
statusCode: 'number',
|
|
1658
1952
|
body: GetRectifyImageResponseBody,
|
|
1659
1953
|
};
|
|
1660
1954
|
}
|
|
@@ -1725,10 +2019,12 @@ export class GetSceneBuildTaskStatusResponseBody extends $tea.Model {
|
|
|
1725
2019
|
|
|
1726
2020
|
export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
1727
2021
|
headers: { [key: string]: string };
|
|
2022
|
+
statusCode: number;
|
|
1728
2023
|
body: GetSceneBuildTaskStatusResponseBody;
|
|
1729
2024
|
static names(): { [key: string]: string } {
|
|
1730
2025
|
return {
|
|
1731
2026
|
headers: 'headers',
|
|
2027
|
+
statusCode: 'statusCode',
|
|
1732
2028
|
body: 'body',
|
|
1733
2029
|
};
|
|
1734
2030
|
}
|
|
@@ -1736,6 +2032,7 @@ export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
1736
2032
|
static types(): { [key: string]: any } {
|
|
1737
2033
|
return {
|
|
1738
2034
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2035
|
+
statusCode: 'number',
|
|
1739
2036
|
body: GetSceneBuildTaskStatusResponseBody,
|
|
1740
2037
|
};
|
|
1741
2038
|
}
|
|
@@ -1745,6 +2042,81 @@ export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
1745
2042
|
}
|
|
1746
2043
|
}
|
|
1747
2044
|
|
|
2045
|
+
export class GetScenePackUrlRequest extends $tea.Model {
|
|
2046
|
+
sceneId?: string;
|
|
2047
|
+
static names(): { [key: string]: string } {
|
|
2048
|
+
return {
|
|
2049
|
+
sceneId: 'SceneId',
|
|
2050
|
+
};
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
static types(): { [key: string]: any } {
|
|
2054
|
+
return {
|
|
2055
|
+
sceneId: 'string',
|
|
2056
|
+
};
|
|
2057
|
+
}
|
|
2058
|
+
|
|
2059
|
+
constructor(map?: { [key: string]: any }) {
|
|
2060
|
+
super(map);
|
|
2061
|
+
}
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
export class GetScenePackUrlResponseBody extends $tea.Model {
|
|
2065
|
+
code?: number;
|
|
2066
|
+
data?: GetScenePackUrlResponseBodyData;
|
|
2067
|
+
message?: string;
|
|
2068
|
+
requestId?: string;
|
|
2069
|
+
success?: boolean;
|
|
2070
|
+
static names(): { [key: string]: string } {
|
|
2071
|
+
return {
|
|
2072
|
+
code: 'Code',
|
|
2073
|
+
data: 'Data',
|
|
2074
|
+
message: 'Message',
|
|
2075
|
+
requestId: 'RequestId',
|
|
2076
|
+
success: 'Success',
|
|
2077
|
+
};
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
static types(): { [key: string]: any } {
|
|
2081
|
+
return {
|
|
2082
|
+
code: 'number',
|
|
2083
|
+
data: GetScenePackUrlResponseBodyData,
|
|
2084
|
+
message: 'string',
|
|
2085
|
+
requestId: 'string',
|
|
2086
|
+
success: 'boolean',
|
|
2087
|
+
};
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
constructor(map?: { [key: string]: any }) {
|
|
2091
|
+
super(map);
|
|
2092
|
+
}
|
|
2093
|
+
}
|
|
2094
|
+
|
|
2095
|
+
export class GetScenePackUrlResponse extends $tea.Model {
|
|
2096
|
+
headers: { [key: string]: string };
|
|
2097
|
+
statusCode: number;
|
|
2098
|
+
body: GetScenePackUrlResponseBody;
|
|
2099
|
+
static names(): { [key: string]: string } {
|
|
2100
|
+
return {
|
|
2101
|
+
headers: 'headers',
|
|
2102
|
+
statusCode: 'statusCode',
|
|
2103
|
+
body: 'body',
|
|
2104
|
+
};
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
static types(): { [key: string]: any } {
|
|
2108
|
+
return {
|
|
2109
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2110
|
+
statusCode: 'number',
|
|
2111
|
+
body: GetScenePackUrlResponseBody,
|
|
2112
|
+
};
|
|
2113
|
+
}
|
|
2114
|
+
|
|
2115
|
+
constructor(map?: { [key: string]: any }) {
|
|
2116
|
+
super(map);
|
|
2117
|
+
}
|
|
2118
|
+
}
|
|
2119
|
+
|
|
1748
2120
|
export class GetScenePreviewDataRequest extends $tea.Model {
|
|
1749
2121
|
domain?: string;
|
|
1750
2122
|
enabled?: boolean;
|
|
@@ -1806,10 +2178,12 @@ export class GetScenePreviewDataResponseBody extends $tea.Model {
|
|
|
1806
2178
|
|
|
1807
2179
|
export class GetScenePreviewDataResponse extends $tea.Model {
|
|
1808
2180
|
headers: { [key: string]: string };
|
|
2181
|
+
statusCode: number;
|
|
1809
2182
|
body: GetScenePreviewDataResponseBody;
|
|
1810
2183
|
static names(): { [key: string]: string } {
|
|
1811
2184
|
return {
|
|
1812
2185
|
headers: 'headers',
|
|
2186
|
+
statusCode: 'statusCode',
|
|
1813
2187
|
body: 'body',
|
|
1814
2188
|
};
|
|
1815
2189
|
}
|
|
@@ -1817,6 +2191,7 @@ export class GetScenePreviewDataResponse extends $tea.Model {
|
|
|
1817
2191
|
static types(): { [key: string]: any } {
|
|
1818
2192
|
return {
|
|
1819
2193
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2194
|
+
statusCode: 'number',
|
|
1820
2195
|
body: GetScenePreviewDataResponseBody,
|
|
1821
2196
|
};
|
|
1822
2197
|
}
|
|
@@ -1884,10 +2259,12 @@ export class GetScenePreviewInfoResponseBody extends $tea.Model {
|
|
|
1884
2259
|
|
|
1885
2260
|
export class GetScenePreviewInfoResponse extends $tea.Model {
|
|
1886
2261
|
headers: { [key: string]: string };
|
|
2262
|
+
statusCode: number;
|
|
1887
2263
|
body: GetScenePreviewInfoResponseBody;
|
|
1888
2264
|
static names(): { [key: string]: string } {
|
|
1889
2265
|
return {
|
|
1890
2266
|
headers: 'headers',
|
|
2267
|
+
statusCode: 'statusCode',
|
|
1891
2268
|
body: 'body',
|
|
1892
2269
|
};
|
|
1893
2270
|
}
|
|
@@ -1895,6 +2272,7 @@ export class GetScenePreviewInfoResponse extends $tea.Model {
|
|
|
1895
2272
|
static types(): { [key: string]: any } {
|
|
1896
2273
|
return {
|
|
1897
2274
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2275
|
+
statusCode: 'number',
|
|
1898
2276
|
body: GetScenePreviewInfoResponseBody,
|
|
1899
2277
|
};
|
|
1900
2278
|
}
|
|
@@ -1956,10 +2334,12 @@ export class GetScenePreviewResourceResponseBody extends $tea.Model {
|
|
|
1956
2334
|
|
|
1957
2335
|
export class GetScenePreviewResourceResponse extends $tea.Model {
|
|
1958
2336
|
headers: { [key: string]: string };
|
|
2337
|
+
statusCode: number;
|
|
1959
2338
|
body: GetScenePreviewResourceResponseBody;
|
|
1960
2339
|
static names(): { [key: string]: string } {
|
|
1961
2340
|
return {
|
|
1962
2341
|
headers: 'headers',
|
|
2342
|
+
statusCode: 'statusCode',
|
|
1963
2343
|
body: 'body',
|
|
1964
2344
|
};
|
|
1965
2345
|
}
|
|
@@ -1967,6 +2347,7 @@ export class GetScenePreviewResourceResponse extends $tea.Model {
|
|
|
1967
2347
|
static types(): { [key: string]: any } {
|
|
1968
2348
|
return {
|
|
1969
2349
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2350
|
+
statusCode: 'number',
|
|
1970
2351
|
body: GetScenePreviewResourceResponseBody,
|
|
1971
2352
|
};
|
|
1972
2353
|
}
|
|
@@ -2031,10 +2412,12 @@ export class GetSingleConnDataResponseBody extends $tea.Model {
|
|
|
2031
2412
|
|
|
2032
2413
|
export class GetSingleConnDataResponse extends $tea.Model {
|
|
2033
2414
|
headers: { [key: string]: string };
|
|
2415
|
+
statusCode: number;
|
|
2034
2416
|
body: GetSingleConnDataResponseBody;
|
|
2035
2417
|
static names(): { [key: string]: string } {
|
|
2036
2418
|
return {
|
|
2037
2419
|
headers: 'headers',
|
|
2420
|
+
statusCode: 'statusCode',
|
|
2038
2421
|
body: 'body',
|
|
2039
2422
|
};
|
|
2040
2423
|
}
|
|
@@ -2042,6 +2425,7 @@ export class GetSingleConnDataResponse extends $tea.Model {
|
|
|
2042
2425
|
static types(): { [key: string]: any } {
|
|
2043
2426
|
return {
|
|
2044
2427
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2428
|
+
statusCode: 'number',
|
|
2045
2429
|
body: GetSingleConnDataResponseBody,
|
|
2046
2430
|
};
|
|
2047
2431
|
}
|
|
@@ -2103,10 +2487,12 @@ export class GetSubSceneTaskStatusResponseBody extends $tea.Model {
|
|
|
2103
2487
|
|
|
2104
2488
|
export class GetSubSceneTaskStatusResponse extends $tea.Model {
|
|
2105
2489
|
headers: { [key: string]: string };
|
|
2490
|
+
statusCode: number;
|
|
2106
2491
|
body: GetSubSceneTaskStatusResponseBody;
|
|
2107
2492
|
static names(): { [key: string]: string } {
|
|
2108
2493
|
return {
|
|
2109
2494
|
headers: 'headers',
|
|
2495
|
+
statusCode: 'statusCode',
|
|
2110
2496
|
body: 'body',
|
|
2111
2497
|
};
|
|
2112
2498
|
}
|
|
@@ -2114,6 +2500,7 @@ export class GetSubSceneTaskStatusResponse extends $tea.Model {
|
|
|
2114
2500
|
static types(): { [key: string]: any } {
|
|
2115
2501
|
return {
|
|
2116
2502
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2503
|
+
statusCode: 'number',
|
|
2117
2504
|
body: GetSubSceneTaskStatusResponseBody,
|
|
2118
2505
|
};
|
|
2119
2506
|
}
|
|
@@ -2184,10 +2571,12 @@ export class GetTaskStatusResponseBody extends $tea.Model {
|
|
|
2184
2571
|
|
|
2185
2572
|
export class GetTaskStatusResponse extends $tea.Model {
|
|
2186
2573
|
headers: { [key: string]: string };
|
|
2574
|
+
statusCode: number;
|
|
2187
2575
|
body: GetTaskStatusResponseBody;
|
|
2188
2576
|
static names(): { [key: string]: string } {
|
|
2189
2577
|
return {
|
|
2190
2578
|
headers: 'headers',
|
|
2579
|
+
statusCode: 'statusCode',
|
|
2191
2580
|
body: 'body',
|
|
2192
2581
|
};
|
|
2193
2582
|
}
|
|
@@ -2195,6 +2584,7 @@ export class GetTaskStatusResponse extends $tea.Model {
|
|
|
2195
2584
|
static types(): { [key: string]: any } {
|
|
2196
2585
|
return {
|
|
2197
2586
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2587
|
+
statusCode: 'number',
|
|
2198
2588
|
body: GetTaskStatusResponseBody,
|
|
2199
2589
|
};
|
|
2200
2590
|
}
|
|
@@ -2256,10 +2646,12 @@ export class GetWindowConfigResponseBody extends $tea.Model {
|
|
|
2256
2646
|
|
|
2257
2647
|
export class GetWindowConfigResponse extends $tea.Model {
|
|
2258
2648
|
headers: { [key: string]: string };
|
|
2649
|
+
statusCode: number;
|
|
2259
2650
|
body: GetWindowConfigResponseBody;
|
|
2260
2651
|
static names(): { [key: string]: string } {
|
|
2261
2652
|
return {
|
|
2262
2653
|
headers: 'headers',
|
|
2654
|
+
statusCode: 'statusCode',
|
|
2263
2655
|
body: 'body',
|
|
2264
2656
|
};
|
|
2265
2657
|
}
|
|
@@ -2267,6 +2659,7 @@ export class GetWindowConfigResponse extends $tea.Model {
|
|
|
2267
2659
|
static types(): { [key: string]: any } {
|
|
2268
2660
|
return {
|
|
2269
2661
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2662
|
+
statusCode: 'number',
|
|
2270
2663
|
body: GetWindowConfigResponseBody,
|
|
2271
2664
|
};
|
|
2272
2665
|
}
|
|
@@ -2331,10 +2724,12 @@ export class LabelBuildResponseBody extends $tea.Model {
|
|
|
2331
2724
|
|
|
2332
2725
|
export class LabelBuildResponse extends $tea.Model {
|
|
2333
2726
|
headers: { [key: string]: string };
|
|
2727
|
+
statusCode: number;
|
|
2334
2728
|
body: LabelBuildResponseBody;
|
|
2335
2729
|
static names(): { [key: string]: string } {
|
|
2336
2730
|
return {
|
|
2337
2731
|
headers: 'headers',
|
|
2732
|
+
statusCode: 'statusCode',
|
|
2338
2733
|
body: 'body',
|
|
2339
2734
|
};
|
|
2340
2735
|
}
|
|
@@ -2342,6 +2737,7 @@ export class LabelBuildResponse extends $tea.Model {
|
|
|
2342
2737
|
static types(): { [key: string]: any } {
|
|
2343
2738
|
return {
|
|
2344
2739
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2740
|
+
statusCode: 'number',
|
|
2345
2741
|
body: LabelBuildResponseBody,
|
|
2346
2742
|
};
|
|
2347
2743
|
}
|
|
@@ -2412,10 +2808,12 @@ export class LinkImageResponseBody extends $tea.Model {
|
|
|
2412
2808
|
|
|
2413
2809
|
export class LinkImageResponse extends $tea.Model {
|
|
2414
2810
|
headers: { [key: string]: string };
|
|
2811
|
+
statusCode: number;
|
|
2415
2812
|
body: LinkImageResponseBody;
|
|
2416
2813
|
static names(): { [key: string]: string } {
|
|
2417
2814
|
return {
|
|
2418
2815
|
headers: 'headers',
|
|
2816
|
+
statusCode: 'statusCode',
|
|
2419
2817
|
body: 'body',
|
|
2420
2818
|
};
|
|
2421
2819
|
}
|
|
@@ -2423,6 +2821,7 @@ export class LinkImageResponse extends $tea.Model {
|
|
|
2423
2821
|
static types(): { [key: string]: any } {
|
|
2424
2822
|
return {
|
|
2425
2823
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2824
|
+
statusCode: 'number',
|
|
2426
2825
|
body: LinkImageResponseBody,
|
|
2427
2826
|
};
|
|
2428
2827
|
}
|
|
@@ -2502,10 +2901,12 @@ export class ListProjectResponseBody extends $tea.Model {
|
|
|
2502
2901
|
|
|
2503
2902
|
export class ListProjectResponse extends $tea.Model {
|
|
2504
2903
|
headers: { [key: string]: string };
|
|
2904
|
+
statusCode: number;
|
|
2505
2905
|
body: ListProjectResponseBody;
|
|
2506
2906
|
static names(): { [key: string]: string } {
|
|
2507
2907
|
return {
|
|
2508
2908
|
headers: 'headers',
|
|
2909
|
+
statusCode: 'statusCode',
|
|
2509
2910
|
body: 'body',
|
|
2510
2911
|
};
|
|
2511
2912
|
}
|
|
@@ -2513,6 +2914,7 @@ export class ListProjectResponse extends $tea.Model {
|
|
|
2513
2914
|
static types(): { [key: string]: any } {
|
|
2514
2915
|
return {
|
|
2515
2916
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2917
|
+
statusCode: 'number',
|
|
2516
2918
|
body: ListProjectResponseBody,
|
|
2517
2919
|
};
|
|
2518
2920
|
}
|
|
@@ -2595,10 +2997,12 @@ export class ListSceneResponseBody extends $tea.Model {
|
|
|
2595
2997
|
|
|
2596
2998
|
export class ListSceneResponse extends $tea.Model {
|
|
2597
2999
|
headers: { [key: string]: string };
|
|
3000
|
+
statusCode: number;
|
|
2598
3001
|
body: ListSceneResponseBody;
|
|
2599
3002
|
static names(): { [key: string]: string } {
|
|
2600
3003
|
return {
|
|
2601
3004
|
headers: 'headers',
|
|
3005
|
+
statusCode: 'statusCode',
|
|
2602
3006
|
body: 'body',
|
|
2603
3007
|
};
|
|
2604
3008
|
}
|
|
@@ -2606,6 +3010,7 @@ export class ListSceneResponse extends $tea.Model {
|
|
|
2606
3010
|
static types(): { [key: string]: any } {
|
|
2607
3011
|
return {
|
|
2608
3012
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3013
|
+
statusCode: 'number',
|
|
2609
3014
|
body: ListSceneResponseBody,
|
|
2610
3015
|
};
|
|
2611
3016
|
}
|
|
@@ -2620,12 +3025,14 @@ export class ListSubSceneRequest extends $tea.Model {
|
|
|
2620
3025
|
pageSize?: number;
|
|
2621
3026
|
sceneId?: string;
|
|
2622
3027
|
showLayoutData?: boolean;
|
|
3028
|
+
sortField?: string;
|
|
2623
3029
|
static names(): { [key: string]: string } {
|
|
2624
3030
|
return {
|
|
2625
3031
|
pageNum: 'PageNum',
|
|
2626
3032
|
pageSize: 'PageSize',
|
|
2627
3033
|
sceneId: 'SceneId',
|
|
2628
3034
|
showLayoutData: 'ShowLayoutData',
|
|
3035
|
+
sortField: 'SortField',
|
|
2629
3036
|
};
|
|
2630
3037
|
}
|
|
2631
3038
|
|
|
@@ -2635,6 +3042,7 @@ export class ListSubSceneRequest extends $tea.Model {
|
|
|
2635
3042
|
pageSize: 'number',
|
|
2636
3043
|
sceneId: 'string',
|
|
2637
3044
|
showLayoutData: 'boolean',
|
|
3045
|
+
sortField: 'string',
|
|
2638
3046
|
};
|
|
2639
3047
|
}
|
|
2640
3048
|
|
|
@@ -2688,10 +3096,12 @@ export class ListSubSceneResponseBody extends $tea.Model {
|
|
|
2688
3096
|
|
|
2689
3097
|
export class ListSubSceneResponse extends $tea.Model {
|
|
2690
3098
|
headers: { [key: string]: string };
|
|
3099
|
+
statusCode: number;
|
|
2691
3100
|
body: ListSubSceneResponseBody;
|
|
2692
3101
|
static names(): { [key: string]: string } {
|
|
2693
3102
|
return {
|
|
2694
3103
|
headers: 'headers',
|
|
3104
|
+
statusCode: 'statusCode',
|
|
2695
3105
|
body: 'body',
|
|
2696
3106
|
};
|
|
2697
3107
|
}
|
|
@@ -2699,6 +3109,7 @@ export class ListSubSceneResponse extends $tea.Model {
|
|
|
2699
3109
|
static types(): { [key: string]: any } {
|
|
2700
3110
|
return {
|
|
2701
3111
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3112
|
+
statusCode: 'number',
|
|
2702
3113
|
body: ListSubSceneResponseBody,
|
|
2703
3114
|
};
|
|
2704
3115
|
}
|
|
@@ -2760,10 +3171,12 @@ export class OptimizeRightAngleResponseBody extends $tea.Model {
|
|
|
2760
3171
|
|
|
2761
3172
|
export class OptimizeRightAngleResponse extends $tea.Model {
|
|
2762
3173
|
headers: { [key: string]: string };
|
|
3174
|
+
statusCode: number;
|
|
2763
3175
|
body: OptimizeRightAngleResponseBody;
|
|
2764
3176
|
static names(): { [key: string]: string } {
|
|
2765
3177
|
return {
|
|
2766
3178
|
headers: 'headers',
|
|
3179
|
+
statusCode: 'statusCode',
|
|
2767
3180
|
body: 'body',
|
|
2768
3181
|
};
|
|
2769
3182
|
}
|
|
@@ -2771,6 +3184,7 @@ export class OptimizeRightAngleResponse extends $tea.Model {
|
|
|
2771
3184
|
static types(): { [key: string]: any } {
|
|
2772
3185
|
return {
|
|
2773
3186
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3187
|
+
statusCode: 'number',
|
|
2774
3188
|
body: OptimizeRightAngleResponseBody,
|
|
2775
3189
|
};
|
|
2776
3190
|
}
|
|
@@ -2780,6 +3194,84 @@ export class OptimizeRightAngleResponse extends $tea.Model {
|
|
|
2780
3194
|
}
|
|
2781
3195
|
}
|
|
2782
3196
|
|
|
3197
|
+
export class PackSceneRequest extends $tea.Model {
|
|
3198
|
+
sceneId?: string;
|
|
3199
|
+
type?: string;
|
|
3200
|
+
static names(): { [key: string]: string } {
|
|
3201
|
+
return {
|
|
3202
|
+
sceneId: 'SceneId',
|
|
3203
|
+
type: 'Type',
|
|
3204
|
+
};
|
|
3205
|
+
}
|
|
3206
|
+
|
|
3207
|
+
static types(): { [key: string]: any } {
|
|
3208
|
+
return {
|
|
3209
|
+
sceneId: 'string',
|
|
3210
|
+
type: 'string',
|
|
3211
|
+
};
|
|
3212
|
+
}
|
|
3213
|
+
|
|
3214
|
+
constructor(map?: { [key: string]: any }) {
|
|
3215
|
+
super(map);
|
|
3216
|
+
}
|
|
3217
|
+
}
|
|
3218
|
+
|
|
3219
|
+
export class PackSceneResponseBody extends $tea.Model {
|
|
3220
|
+
code?: number;
|
|
3221
|
+
data?: PackSceneResponseBodyData;
|
|
3222
|
+
message?: string;
|
|
3223
|
+
requestId?: string;
|
|
3224
|
+
success?: boolean;
|
|
3225
|
+
static names(): { [key: string]: string } {
|
|
3226
|
+
return {
|
|
3227
|
+
code: 'Code',
|
|
3228
|
+
data: 'Data',
|
|
3229
|
+
message: 'Message',
|
|
3230
|
+
requestId: 'RequestId',
|
|
3231
|
+
success: 'Success',
|
|
3232
|
+
};
|
|
3233
|
+
}
|
|
3234
|
+
|
|
3235
|
+
static types(): { [key: string]: any } {
|
|
3236
|
+
return {
|
|
3237
|
+
code: 'number',
|
|
3238
|
+
data: PackSceneResponseBodyData,
|
|
3239
|
+
message: 'string',
|
|
3240
|
+
requestId: 'string',
|
|
3241
|
+
success: 'boolean',
|
|
3242
|
+
};
|
|
3243
|
+
}
|
|
3244
|
+
|
|
3245
|
+
constructor(map?: { [key: string]: any }) {
|
|
3246
|
+
super(map);
|
|
3247
|
+
}
|
|
3248
|
+
}
|
|
3249
|
+
|
|
3250
|
+
export class PackSceneResponse extends $tea.Model {
|
|
3251
|
+
headers: { [key: string]: string };
|
|
3252
|
+
statusCode: number;
|
|
3253
|
+
body: PackSceneResponseBody;
|
|
3254
|
+
static names(): { [key: string]: string } {
|
|
3255
|
+
return {
|
|
3256
|
+
headers: 'headers',
|
|
3257
|
+
statusCode: 'statusCode',
|
|
3258
|
+
body: 'body',
|
|
3259
|
+
};
|
|
3260
|
+
}
|
|
3261
|
+
|
|
3262
|
+
static types(): { [key: string]: any } {
|
|
3263
|
+
return {
|
|
3264
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3265
|
+
statusCode: 'number',
|
|
3266
|
+
body: PackSceneResponseBody,
|
|
3267
|
+
};
|
|
3268
|
+
}
|
|
3269
|
+
|
|
3270
|
+
constructor(map?: { [key: string]: any }) {
|
|
3271
|
+
super(map);
|
|
3272
|
+
}
|
|
3273
|
+
}
|
|
3274
|
+
|
|
2783
3275
|
export class PredImageRequest extends $tea.Model {
|
|
2784
3276
|
correctVertical?: boolean;
|
|
2785
3277
|
countDetectDoor?: number;
|
|
@@ -2841,10 +3333,12 @@ export class PredImageResponseBody extends $tea.Model {
|
|
|
2841
3333
|
|
|
2842
3334
|
export class PredImageResponse extends $tea.Model {
|
|
2843
3335
|
headers: { [key: string]: string };
|
|
3336
|
+
statusCode: number;
|
|
2844
3337
|
body: PredImageResponseBody;
|
|
2845
3338
|
static names(): { [key: string]: string } {
|
|
2846
3339
|
return {
|
|
2847
3340
|
headers: 'headers',
|
|
3341
|
+
statusCode: 'statusCode',
|
|
2848
3342
|
body: 'body',
|
|
2849
3343
|
};
|
|
2850
3344
|
}
|
|
@@ -2852,6 +3346,7 @@ export class PredImageResponse extends $tea.Model {
|
|
|
2852
3346
|
static types(): { [key: string]: any } {
|
|
2853
3347
|
return {
|
|
2854
3348
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3349
|
+
statusCode: 'number',
|
|
2855
3350
|
body: PredImageResponseBody,
|
|
2856
3351
|
};
|
|
2857
3352
|
}
|
|
@@ -2919,10 +3414,12 @@ export class PredictionWallLineResponseBody extends $tea.Model {
|
|
|
2919
3414
|
|
|
2920
3415
|
export class PredictionWallLineResponse extends $tea.Model {
|
|
2921
3416
|
headers: { [key: string]: string };
|
|
3417
|
+
statusCode: number;
|
|
2922
3418
|
body: PredictionWallLineResponseBody;
|
|
2923
3419
|
static names(): { [key: string]: string } {
|
|
2924
3420
|
return {
|
|
2925
3421
|
headers: 'headers',
|
|
3422
|
+
statusCode: 'statusCode',
|
|
2926
3423
|
body: 'body',
|
|
2927
3424
|
};
|
|
2928
3425
|
}
|
|
@@ -2930,6 +3427,7 @@ export class PredictionWallLineResponse extends $tea.Model {
|
|
|
2930
3427
|
static types(): { [key: string]: any } {
|
|
2931
3428
|
return {
|
|
2932
3429
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3430
|
+
statusCode: 'number',
|
|
2933
3431
|
body: PredictionWallLineResponseBody,
|
|
2934
3432
|
};
|
|
2935
3433
|
}
|
|
@@ -2991,10 +3489,12 @@ export class PublishHotspotResponseBody extends $tea.Model {
|
|
|
2991
3489
|
|
|
2992
3490
|
export class PublishHotspotResponse extends $tea.Model {
|
|
2993
3491
|
headers: { [key: string]: string };
|
|
3492
|
+
statusCode: number;
|
|
2994
3493
|
body: PublishHotspotResponseBody;
|
|
2995
3494
|
static names(): { [key: string]: string } {
|
|
2996
3495
|
return {
|
|
2997
3496
|
headers: 'headers',
|
|
3497
|
+
statusCode: 'statusCode',
|
|
2998
3498
|
body: 'body',
|
|
2999
3499
|
};
|
|
3000
3500
|
}
|
|
@@ -3002,6 +3502,7 @@ export class PublishHotspotResponse extends $tea.Model {
|
|
|
3002
3502
|
static types(): { [key: string]: any } {
|
|
3003
3503
|
return {
|
|
3004
3504
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3505
|
+
statusCode: 'number',
|
|
3005
3506
|
body: PublishHotspotResponseBody,
|
|
3006
3507
|
};
|
|
3007
3508
|
}
|
|
@@ -3063,10 +3564,12 @@ export class PublishSceneResponseBody extends $tea.Model {
|
|
|
3063
3564
|
|
|
3064
3565
|
export class PublishSceneResponse extends $tea.Model {
|
|
3065
3566
|
headers: { [key: string]: string };
|
|
3567
|
+
statusCode: number;
|
|
3066
3568
|
body: PublishSceneResponseBody;
|
|
3067
3569
|
static names(): { [key: string]: string } {
|
|
3068
3570
|
return {
|
|
3069
3571
|
headers: 'headers',
|
|
3572
|
+
statusCode: 'statusCode',
|
|
3070
3573
|
body: 'body',
|
|
3071
3574
|
};
|
|
3072
3575
|
}
|
|
@@ -3074,6 +3577,7 @@ export class PublishSceneResponse extends $tea.Model {
|
|
|
3074
3577
|
static types(): { [key: string]: any } {
|
|
3075
3578
|
return {
|
|
3076
3579
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3580
|
+
statusCode: 'number',
|
|
3077
3581
|
body: PublishSceneResponseBody,
|
|
3078
3582
|
};
|
|
3079
3583
|
}
|
|
@@ -3135,10 +3639,12 @@ export class PublishStatusResponseBody extends $tea.Model {
|
|
|
3135
3639
|
|
|
3136
3640
|
export class PublishStatusResponse extends $tea.Model {
|
|
3137
3641
|
headers: { [key: string]: string };
|
|
3642
|
+
statusCode: number;
|
|
3138
3643
|
body: PublishStatusResponseBody;
|
|
3139
3644
|
static names(): { [key: string]: string } {
|
|
3140
3645
|
return {
|
|
3141
3646
|
headers: 'headers',
|
|
3647
|
+
statusCode: 'statusCode',
|
|
3142
3648
|
body: 'body',
|
|
3143
3649
|
};
|
|
3144
3650
|
}
|
|
@@ -3146,6 +3652,7 @@ export class PublishStatusResponse extends $tea.Model {
|
|
|
3146
3652
|
static types(): { [key: string]: any } {
|
|
3147
3653
|
return {
|
|
3148
3654
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3655
|
+
statusCode: 'number',
|
|
3149
3656
|
body: PublishStatusResponseBody,
|
|
3150
3657
|
};
|
|
3151
3658
|
}
|
|
@@ -3204,10 +3711,12 @@ export class RecoveryOriginImageResponseBody extends $tea.Model {
|
|
|
3204
3711
|
|
|
3205
3712
|
export class RecoveryOriginImageResponse extends $tea.Model {
|
|
3206
3713
|
headers: { [key: string]: string };
|
|
3714
|
+
statusCode: number;
|
|
3207
3715
|
body: RecoveryOriginImageResponseBody;
|
|
3208
3716
|
static names(): { [key: string]: string } {
|
|
3209
3717
|
return {
|
|
3210
3718
|
headers: 'headers',
|
|
3719
|
+
statusCode: 'statusCode',
|
|
3211
3720
|
body: 'body',
|
|
3212
3721
|
};
|
|
3213
3722
|
}
|
|
@@ -3215,6 +3724,7 @@ export class RecoveryOriginImageResponse extends $tea.Model {
|
|
|
3215
3724
|
static types(): { [key: string]: any } {
|
|
3216
3725
|
return {
|
|
3217
3726
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3727
|
+
statusCode: 'number',
|
|
3218
3728
|
body: RecoveryOriginImageResponseBody,
|
|
3219
3729
|
};
|
|
3220
3730
|
}
|
|
@@ -3285,10 +3795,12 @@ export class RectVerticalResponseBody extends $tea.Model {
|
|
|
3285
3795
|
|
|
3286
3796
|
export class RectVerticalResponse extends $tea.Model {
|
|
3287
3797
|
headers: { [key: string]: string };
|
|
3798
|
+
statusCode: number;
|
|
3288
3799
|
body: RectVerticalResponseBody;
|
|
3289
3800
|
static names(): { [key: string]: string } {
|
|
3290
3801
|
return {
|
|
3291
3802
|
headers: 'headers',
|
|
3803
|
+
statusCode: 'statusCode',
|
|
3292
3804
|
body: 'body',
|
|
3293
3805
|
};
|
|
3294
3806
|
}
|
|
@@ -3296,6 +3808,7 @@ export class RectVerticalResponse extends $tea.Model {
|
|
|
3296
3808
|
static types(): { [key: string]: any } {
|
|
3297
3809
|
return {
|
|
3298
3810
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3811
|
+
statusCode: 'number',
|
|
3299
3812
|
body: RectVerticalResponseBody,
|
|
3300
3813
|
};
|
|
3301
3814
|
}
|
|
@@ -3363,10 +3876,12 @@ export class RectifyImageResponseBody extends $tea.Model {
|
|
|
3363
3876
|
|
|
3364
3877
|
export class RectifyImageResponse extends $tea.Model {
|
|
3365
3878
|
headers: { [key: string]: string };
|
|
3879
|
+
statusCode: number;
|
|
3366
3880
|
body: RectifyImageResponseBody;
|
|
3367
3881
|
static names(): { [key: string]: string } {
|
|
3368
3882
|
return {
|
|
3369
3883
|
headers: 'headers',
|
|
3884
|
+
statusCode: 'statusCode',
|
|
3370
3885
|
body: 'body',
|
|
3371
3886
|
};
|
|
3372
3887
|
}
|
|
@@ -3374,6 +3889,7 @@ export class RectifyImageResponse extends $tea.Model {
|
|
|
3374
3889
|
static types(): { [key: string]: any } {
|
|
3375
3890
|
return {
|
|
3376
3891
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3892
|
+
statusCode: 'number',
|
|
3377
3893
|
body: RectifyImageResponseBody,
|
|
3378
3894
|
};
|
|
3379
3895
|
}
|
|
@@ -3432,10 +3948,12 @@ export class RollbackSubSceneResponseBody extends $tea.Model {
|
|
|
3432
3948
|
|
|
3433
3949
|
export class RollbackSubSceneResponse extends $tea.Model {
|
|
3434
3950
|
headers: { [key: string]: string };
|
|
3951
|
+
statusCode: number;
|
|
3435
3952
|
body: RollbackSubSceneResponseBody;
|
|
3436
3953
|
static names(): { [key: string]: string } {
|
|
3437
3954
|
return {
|
|
3438
3955
|
headers: 'headers',
|
|
3956
|
+
statusCode: 'statusCode',
|
|
3439
3957
|
body: 'body',
|
|
3440
3958
|
};
|
|
3441
3959
|
}
|
|
@@ -3443,6 +3961,7 @@ export class RollbackSubSceneResponse extends $tea.Model {
|
|
|
3443
3961
|
static types(): { [key: string]: any } {
|
|
3444
3962
|
return {
|
|
3445
3963
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3964
|
+
statusCode: 'number',
|
|
3446
3965
|
body: RollbackSubSceneResponseBody,
|
|
3447
3966
|
};
|
|
3448
3967
|
}
|
|
@@ -3501,10 +4020,12 @@ export class SaveHotspotConfigResponseBody extends $tea.Model {
|
|
|
3501
4020
|
|
|
3502
4021
|
export class SaveHotspotConfigResponse extends $tea.Model {
|
|
3503
4022
|
headers: { [key: string]: string };
|
|
4023
|
+
statusCode: number;
|
|
3504
4024
|
body: SaveHotspotConfigResponseBody;
|
|
3505
4025
|
static names(): { [key: string]: string } {
|
|
3506
4026
|
return {
|
|
3507
4027
|
headers: 'headers',
|
|
4028
|
+
statusCode: 'statusCode',
|
|
3508
4029
|
body: 'body',
|
|
3509
4030
|
};
|
|
3510
4031
|
}
|
|
@@ -3512,6 +4033,7 @@ export class SaveHotspotConfigResponse extends $tea.Model {
|
|
|
3512
4033
|
static types(): { [key: string]: any } {
|
|
3513
4034
|
return {
|
|
3514
4035
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4036
|
+
statusCode: 'number',
|
|
3515
4037
|
body: SaveHotspotConfigResponseBody,
|
|
3516
4038
|
};
|
|
3517
4039
|
}
|
|
@@ -3570,10 +4092,12 @@ export class SaveHotspotTagResponseBody extends $tea.Model {
|
|
|
3570
4092
|
|
|
3571
4093
|
export class SaveHotspotTagResponse extends $tea.Model {
|
|
3572
4094
|
headers: { [key: string]: string };
|
|
4095
|
+
statusCode: number;
|
|
3573
4096
|
body: SaveHotspotTagResponseBody;
|
|
3574
4097
|
static names(): { [key: string]: string } {
|
|
3575
4098
|
return {
|
|
3576
4099
|
headers: 'headers',
|
|
4100
|
+
statusCode: 'statusCode',
|
|
3577
4101
|
body: 'body',
|
|
3578
4102
|
};
|
|
3579
4103
|
}
|
|
@@ -3581,6 +4105,7 @@ export class SaveHotspotTagResponse extends $tea.Model {
|
|
|
3581
4105
|
static types(): { [key: string]: any } {
|
|
3582
4106
|
return {
|
|
3583
4107
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4108
|
+
statusCode: 'number',
|
|
3584
4109
|
body: SaveHotspotTagResponseBody,
|
|
3585
4110
|
};
|
|
3586
4111
|
}
|
|
@@ -3642,10 +4167,12 @@ export class ScenePublishResponseBody extends $tea.Model {
|
|
|
3642
4167
|
|
|
3643
4168
|
export class ScenePublishResponse extends $tea.Model {
|
|
3644
4169
|
headers: { [key: string]: string };
|
|
4170
|
+
statusCode: number;
|
|
3645
4171
|
body: ScenePublishResponseBody;
|
|
3646
4172
|
static names(): { [key: string]: string } {
|
|
3647
4173
|
return {
|
|
3648
4174
|
headers: 'headers',
|
|
4175
|
+
statusCode: 'statusCode',
|
|
3649
4176
|
body: 'body',
|
|
3650
4177
|
};
|
|
3651
4178
|
}
|
|
@@ -3653,6 +4180,7 @@ export class ScenePublishResponse extends $tea.Model {
|
|
|
3653
4180
|
static types(): { [key: string]: any } {
|
|
3654
4181
|
return {
|
|
3655
4182
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4183
|
+
statusCode: 'number',
|
|
3656
4184
|
body: ScenePublishResponseBody,
|
|
3657
4185
|
};
|
|
3658
4186
|
}
|
|
@@ -3717,10 +4245,12 @@ export class TempPreviewResponseBody extends $tea.Model {
|
|
|
3717
4245
|
|
|
3718
4246
|
export class TempPreviewResponse extends $tea.Model {
|
|
3719
4247
|
headers: { [key: string]: string };
|
|
4248
|
+
statusCode: number;
|
|
3720
4249
|
body: TempPreviewResponseBody;
|
|
3721
4250
|
static names(): { [key: string]: string } {
|
|
3722
4251
|
return {
|
|
3723
4252
|
headers: 'headers',
|
|
4253
|
+
statusCode: 'statusCode',
|
|
3724
4254
|
body: 'body',
|
|
3725
4255
|
};
|
|
3726
4256
|
}
|
|
@@ -3728,6 +4258,7 @@ export class TempPreviewResponse extends $tea.Model {
|
|
|
3728
4258
|
static types(): { [key: string]: any } {
|
|
3729
4259
|
return {
|
|
3730
4260
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4261
|
+
statusCode: 'number',
|
|
3731
4262
|
body: TempPreviewResponseBody,
|
|
3732
4263
|
};
|
|
3733
4264
|
}
|
|
@@ -3789,10 +4320,12 @@ export class TempPreviewStatusResponseBody extends $tea.Model {
|
|
|
3789
4320
|
|
|
3790
4321
|
export class TempPreviewStatusResponse extends $tea.Model {
|
|
3791
4322
|
headers: { [key: string]: string };
|
|
4323
|
+
statusCode: number;
|
|
3792
4324
|
body: TempPreviewStatusResponseBody;
|
|
3793
4325
|
static names(): { [key: string]: string } {
|
|
3794
4326
|
return {
|
|
3795
4327
|
headers: 'headers',
|
|
4328
|
+
statusCode: 'statusCode',
|
|
3796
4329
|
body: 'body',
|
|
3797
4330
|
};
|
|
3798
4331
|
}
|
|
@@ -3800,6 +4333,7 @@ export class TempPreviewStatusResponse extends $tea.Model {
|
|
|
3800
4333
|
static types(): { [key: string]: any } {
|
|
3801
4334
|
return {
|
|
3802
4335
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4336
|
+
statusCode: 'number',
|
|
3803
4337
|
body: TempPreviewStatusResponseBody,
|
|
3804
4338
|
};
|
|
3805
4339
|
}
|
|
@@ -3861,10 +4395,12 @@ export class UpdateConnDataResponseBody extends $tea.Model {
|
|
|
3861
4395
|
|
|
3862
4396
|
export class UpdateConnDataResponse extends $tea.Model {
|
|
3863
4397
|
headers: { [key: string]: string };
|
|
4398
|
+
statusCode: number;
|
|
3864
4399
|
body: UpdateConnDataResponseBody;
|
|
3865
4400
|
static names(): { [key: string]: string } {
|
|
3866
4401
|
return {
|
|
3867
4402
|
headers: 'headers',
|
|
4403
|
+
statusCode: 'statusCode',
|
|
3868
4404
|
body: 'body',
|
|
3869
4405
|
};
|
|
3870
4406
|
}
|
|
@@ -3872,6 +4408,7 @@ export class UpdateConnDataResponse extends $tea.Model {
|
|
|
3872
4408
|
static types(): { [key: string]: any } {
|
|
3873
4409
|
return {
|
|
3874
4410
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4411
|
+
statusCode: 'number',
|
|
3875
4412
|
body: UpdateConnDataResponseBody,
|
|
3876
4413
|
};
|
|
3877
4414
|
}
|
|
@@ -3933,10 +4470,12 @@ export class UpdateLayoutDataResponseBody extends $tea.Model {
|
|
|
3933
4470
|
|
|
3934
4471
|
export class UpdateLayoutDataResponse extends $tea.Model {
|
|
3935
4472
|
headers: { [key: string]: string };
|
|
4473
|
+
statusCode: number;
|
|
3936
4474
|
body: UpdateLayoutDataResponseBody;
|
|
3937
4475
|
static names(): { [key: string]: string } {
|
|
3938
4476
|
return {
|
|
3939
4477
|
headers: 'headers',
|
|
4478
|
+
statusCode: 'statusCode',
|
|
3940
4479
|
body: 'body',
|
|
3941
4480
|
};
|
|
3942
4481
|
}
|
|
@@ -3944,6 +4483,7 @@ export class UpdateLayoutDataResponse extends $tea.Model {
|
|
|
3944
4483
|
static types(): { [key: string]: any } {
|
|
3945
4484
|
return {
|
|
3946
4485
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4486
|
+
statusCode: 'number',
|
|
3947
4487
|
body: UpdateLayoutDataResponseBody,
|
|
3948
4488
|
};
|
|
3949
4489
|
}
|
|
@@ -4008,10 +4548,12 @@ export class UpdateProjectResponseBody extends $tea.Model {
|
|
|
4008
4548
|
|
|
4009
4549
|
export class UpdateProjectResponse extends $tea.Model {
|
|
4010
4550
|
headers: { [key: string]: string };
|
|
4551
|
+
statusCode: number;
|
|
4011
4552
|
body: UpdateProjectResponseBody;
|
|
4012
4553
|
static names(): { [key: string]: string } {
|
|
4013
4554
|
return {
|
|
4014
4555
|
headers: 'headers',
|
|
4556
|
+
statusCode: 'statusCode',
|
|
4015
4557
|
body: 'body',
|
|
4016
4558
|
};
|
|
4017
4559
|
}
|
|
@@ -4019,6 +4561,7 @@ export class UpdateProjectResponse extends $tea.Model {
|
|
|
4019
4561
|
static types(): { [key: string]: any } {
|
|
4020
4562
|
return {
|
|
4021
4563
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4564
|
+
statusCode: 'number',
|
|
4022
4565
|
body: UpdateProjectResponseBody,
|
|
4023
4566
|
};
|
|
4024
4567
|
}
|
|
@@ -4080,10 +4623,12 @@ export class UpdateSceneResponseBody extends $tea.Model {
|
|
|
4080
4623
|
|
|
4081
4624
|
export class UpdateSceneResponse extends $tea.Model {
|
|
4082
4625
|
headers: { [key: string]: string };
|
|
4626
|
+
statusCode: number;
|
|
4083
4627
|
body: UpdateSceneResponseBody;
|
|
4084
4628
|
static names(): { [key: string]: string } {
|
|
4085
4629
|
return {
|
|
4086
4630
|
headers: 'headers',
|
|
4631
|
+
statusCode: 'statusCode',
|
|
4087
4632
|
body: 'body',
|
|
4088
4633
|
};
|
|
4089
4634
|
}
|
|
@@ -4091,6 +4636,7 @@ export class UpdateSceneResponse extends $tea.Model {
|
|
|
4091
4636
|
static types(): { [key: string]: any } {
|
|
4092
4637
|
return {
|
|
4093
4638
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4639
|
+
statusCode: 'number',
|
|
4094
4640
|
body: UpdateSceneResponseBody,
|
|
4095
4641
|
};
|
|
4096
4642
|
}
|
|
@@ -4103,10 +4649,12 @@ export class UpdateSceneResponse extends $tea.Model {
|
|
|
4103
4649
|
export class UpdateSubSceneRequest extends $tea.Model {
|
|
4104
4650
|
id?: string;
|
|
4105
4651
|
name?: string;
|
|
4652
|
+
viewPoint?: number[];
|
|
4106
4653
|
static names(): { [key: string]: string } {
|
|
4107
4654
|
return {
|
|
4108
4655
|
id: 'Id',
|
|
4109
4656
|
name: 'Name',
|
|
4657
|
+
viewPoint: 'ViewPoint',
|
|
4110
4658
|
};
|
|
4111
4659
|
}
|
|
4112
4660
|
|
|
@@ -4114,6 +4662,32 @@ export class UpdateSubSceneRequest extends $tea.Model {
|
|
|
4114
4662
|
return {
|
|
4115
4663
|
id: 'string',
|
|
4116
4664
|
name: 'string',
|
|
4665
|
+
viewPoint: { 'type': 'array', 'itemType': 'number' },
|
|
4666
|
+
};
|
|
4667
|
+
}
|
|
4668
|
+
|
|
4669
|
+
constructor(map?: { [key: string]: any }) {
|
|
4670
|
+
super(map);
|
|
4671
|
+
}
|
|
4672
|
+
}
|
|
4673
|
+
|
|
4674
|
+
export class UpdateSubSceneShrinkRequest extends $tea.Model {
|
|
4675
|
+
id?: string;
|
|
4676
|
+
name?: string;
|
|
4677
|
+
viewPointShrink?: string;
|
|
4678
|
+
static names(): { [key: string]: string } {
|
|
4679
|
+
return {
|
|
4680
|
+
id: 'Id',
|
|
4681
|
+
name: 'Name',
|
|
4682
|
+
viewPointShrink: 'ViewPoint',
|
|
4683
|
+
};
|
|
4684
|
+
}
|
|
4685
|
+
|
|
4686
|
+
static types(): { [key: string]: any } {
|
|
4687
|
+
return {
|
|
4688
|
+
id: 'string',
|
|
4689
|
+
name: 'string',
|
|
4690
|
+
viewPointShrink: 'string',
|
|
4117
4691
|
};
|
|
4118
4692
|
}
|
|
4119
4693
|
|
|
@@ -4152,10 +4726,12 @@ export class UpdateSubSceneResponseBody extends $tea.Model {
|
|
|
4152
4726
|
|
|
4153
4727
|
export class UpdateSubSceneResponse extends $tea.Model {
|
|
4154
4728
|
headers: { [key: string]: string };
|
|
4729
|
+
statusCode: number;
|
|
4155
4730
|
body: UpdateSubSceneResponseBody;
|
|
4156
4731
|
static names(): { [key: string]: string } {
|
|
4157
4732
|
return {
|
|
4158
4733
|
headers: 'headers',
|
|
4734
|
+
statusCode: 'statusCode',
|
|
4159
4735
|
body: 'body',
|
|
4160
4736
|
};
|
|
4161
4737
|
}
|
|
@@ -4163,6 +4739,7 @@ export class UpdateSubSceneResponse extends $tea.Model {
|
|
|
4163
4739
|
static types(): { [key: string]: any } {
|
|
4164
4740
|
return {
|
|
4165
4741
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4742
|
+
statusCode: 'number',
|
|
4166
4743
|
body: UpdateSubSceneResponseBody,
|
|
4167
4744
|
};
|
|
4168
4745
|
}
|
|
@@ -4172,6 +4749,103 @@ export class UpdateSubSceneResponse extends $tea.Model {
|
|
|
4172
4749
|
}
|
|
4173
4750
|
}
|
|
4174
4751
|
|
|
4752
|
+
export class UpdateSubSceneSeqRequest extends $tea.Model {
|
|
4753
|
+
sceneId?: string;
|
|
4754
|
+
sortSubSceneIds?: string[];
|
|
4755
|
+
static names(): { [key: string]: string } {
|
|
4756
|
+
return {
|
|
4757
|
+
sceneId: 'SceneId',
|
|
4758
|
+
sortSubSceneIds: 'SortSubSceneIds',
|
|
4759
|
+
};
|
|
4760
|
+
}
|
|
4761
|
+
|
|
4762
|
+
static types(): { [key: string]: any } {
|
|
4763
|
+
return {
|
|
4764
|
+
sceneId: 'string',
|
|
4765
|
+
sortSubSceneIds: { 'type': 'array', 'itemType': 'string' },
|
|
4766
|
+
};
|
|
4767
|
+
}
|
|
4768
|
+
|
|
4769
|
+
constructor(map?: { [key: string]: any }) {
|
|
4770
|
+
super(map);
|
|
4771
|
+
}
|
|
4772
|
+
}
|
|
4773
|
+
|
|
4774
|
+
export class UpdateSubSceneSeqShrinkRequest extends $tea.Model {
|
|
4775
|
+
sceneId?: string;
|
|
4776
|
+
sortSubSceneIdsShrink?: string;
|
|
4777
|
+
static names(): { [key: string]: string } {
|
|
4778
|
+
return {
|
|
4779
|
+
sceneId: 'SceneId',
|
|
4780
|
+
sortSubSceneIdsShrink: 'SortSubSceneIds',
|
|
4781
|
+
};
|
|
4782
|
+
}
|
|
4783
|
+
|
|
4784
|
+
static types(): { [key: string]: any } {
|
|
4785
|
+
return {
|
|
4786
|
+
sceneId: 'string',
|
|
4787
|
+
sortSubSceneIdsShrink: 'string',
|
|
4788
|
+
};
|
|
4789
|
+
}
|
|
4790
|
+
|
|
4791
|
+
constructor(map?: { [key: string]: any }) {
|
|
4792
|
+
super(map);
|
|
4793
|
+
}
|
|
4794
|
+
}
|
|
4795
|
+
|
|
4796
|
+
export class UpdateSubSceneSeqResponseBody extends $tea.Model {
|
|
4797
|
+
code?: number;
|
|
4798
|
+
message?: string;
|
|
4799
|
+
requestId?: string;
|
|
4800
|
+
success?: boolean;
|
|
4801
|
+
static names(): { [key: string]: string } {
|
|
4802
|
+
return {
|
|
4803
|
+
code: 'Code',
|
|
4804
|
+
message: 'Message',
|
|
4805
|
+
requestId: 'RequestId',
|
|
4806
|
+
success: 'Success',
|
|
4807
|
+
};
|
|
4808
|
+
}
|
|
4809
|
+
|
|
4810
|
+
static types(): { [key: string]: any } {
|
|
4811
|
+
return {
|
|
4812
|
+
code: 'number',
|
|
4813
|
+
message: 'string',
|
|
4814
|
+
requestId: 'string',
|
|
4815
|
+
success: 'boolean',
|
|
4816
|
+
};
|
|
4817
|
+
}
|
|
4818
|
+
|
|
4819
|
+
constructor(map?: { [key: string]: any }) {
|
|
4820
|
+
super(map);
|
|
4821
|
+
}
|
|
4822
|
+
}
|
|
4823
|
+
|
|
4824
|
+
export class UpdateSubSceneSeqResponse extends $tea.Model {
|
|
4825
|
+
headers: { [key: string]: string };
|
|
4826
|
+
statusCode: number;
|
|
4827
|
+
body: UpdateSubSceneSeqResponseBody;
|
|
4828
|
+
static names(): { [key: string]: string } {
|
|
4829
|
+
return {
|
|
4830
|
+
headers: 'headers',
|
|
4831
|
+
statusCode: 'statusCode',
|
|
4832
|
+
body: 'body',
|
|
4833
|
+
};
|
|
4834
|
+
}
|
|
4835
|
+
|
|
4836
|
+
static types(): { [key: string]: any } {
|
|
4837
|
+
return {
|
|
4838
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4839
|
+
statusCode: 'number',
|
|
4840
|
+
body: UpdateSubSceneSeqResponseBody,
|
|
4841
|
+
};
|
|
4842
|
+
}
|
|
4843
|
+
|
|
4844
|
+
constructor(map?: { [key: string]: any }) {
|
|
4845
|
+
super(map);
|
|
4846
|
+
}
|
|
4847
|
+
}
|
|
4848
|
+
|
|
4175
4849
|
export class AddRoomPlanResponseBodyData extends $tea.Model {
|
|
4176
4850
|
accessId?: string;
|
|
4177
4851
|
callback?: string;
|
|
@@ -4182,25 +4856,44 @@ export class AddRoomPlanResponseBodyData extends $tea.Model {
|
|
|
4182
4856
|
signature?: string;
|
|
4183
4857
|
static names(): { [key: string]: string } {
|
|
4184
4858
|
return {
|
|
4185
|
-
accessId: 'AccessId',
|
|
4186
|
-
callback: 'Callback',
|
|
4187
|
-
dir: 'Dir',
|
|
4188
|
-
expire: 'Expire',
|
|
4189
|
-
host: 'Host',
|
|
4190
|
-
policy: 'Policy',
|
|
4191
|
-
signature: 'Signature',
|
|
4859
|
+
accessId: 'AccessId',
|
|
4860
|
+
callback: 'Callback',
|
|
4861
|
+
dir: 'Dir',
|
|
4862
|
+
expire: 'Expire',
|
|
4863
|
+
host: 'Host',
|
|
4864
|
+
policy: 'Policy',
|
|
4865
|
+
signature: 'Signature',
|
|
4866
|
+
};
|
|
4867
|
+
}
|
|
4868
|
+
|
|
4869
|
+
static types(): { [key: string]: any } {
|
|
4870
|
+
return {
|
|
4871
|
+
accessId: 'string',
|
|
4872
|
+
callback: 'string',
|
|
4873
|
+
dir: 'string',
|
|
4874
|
+
expire: 'string',
|
|
4875
|
+
host: 'string',
|
|
4876
|
+
policy: 'string',
|
|
4877
|
+
signature: 'string',
|
|
4878
|
+
};
|
|
4879
|
+
}
|
|
4880
|
+
|
|
4881
|
+
constructor(map?: { [key: string]: any }) {
|
|
4882
|
+
super(map);
|
|
4883
|
+
}
|
|
4884
|
+
}
|
|
4885
|
+
|
|
4886
|
+
export class CopySceneResponseBodyData extends $tea.Model {
|
|
4887
|
+
taskId?: string;
|
|
4888
|
+
static names(): { [key: string]: string } {
|
|
4889
|
+
return {
|
|
4890
|
+
taskId: 'TaskId',
|
|
4192
4891
|
};
|
|
4193
4892
|
}
|
|
4194
4893
|
|
|
4195
4894
|
static types(): { [key: string]: any } {
|
|
4196
4895
|
return {
|
|
4197
|
-
|
|
4198
|
-
callback: 'string',
|
|
4199
|
-
dir: 'string',
|
|
4200
|
-
expire: 'string',
|
|
4201
|
-
host: 'string',
|
|
4202
|
-
policy: 'string',
|
|
4203
|
-
signature: 'string',
|
|
4896
|
+
taskId: 'string',
|
|
4204
4897
|
};
|
|
4205
4898
|
}
|
|
4206
4899
|
|
|
@@ -4234,6 +4927,28 @@ export class GetConnDataResponseBodyList extends $tea.Model {
|
|
|
4234
4927
|
}
|
|
4235
4928
|
}
|
|
4236
4929
|
|
|
4930
|
+
export class GetCopySceneTaskStatusResponseBodyData extends $tea.Model {
|
|
4931
|
+
progress?: number;
|
|
4932
|
+
status?: string;
|
|
4933
|
+
static names(): { [key: string]: string } {
|
|
4934
|
+
return {
|
|
4935
|
+
progress: 'Progress',
|
|
4936
|
+
status: 'Status',
|
|
4937
|
+
};
|
|
4938
|
+
}
|
|
4939
|
+
|
|
4940
|
+
static types(): { [key: string]: any } {
|
|
4941
|
+
return {
|
|
4942
|
+
progress: 'number',
|
|
4943
|
+
status: 'string',
|
|
4944
|
+
};
|
|
4945
|
+
}
|
|
4946
|
+
|
|
4947
|
+
constructor(map?: { [key: string]: any }) {
|
|
4948
|
+
super(map);
|
|
4949
|
+
}
|
|
4950
|
+
}
|
|
4951
|
+
|
|
4237
4952
|
export class GetHotspotSceneDataResponseBodyData extends $tea.Model {
|
|
4238
4953
|
modelToken?: string;
|
|
4239
4954
|
previewData?: string;
|
|
@@ -4262,6 +4977,53 @@ export class GetHotspotSceneDataResponseBodyData extends $tea.Model {
|
|
|
4262
4977
|
}
|
|
4263
4978
|
}
|
|
4264
4979
|
|
|
4980
|
+
export class GetPackSceneTaskStatusResponseBodyData extends $tea.Model {
|
|
4981
|
+
progress?: number;
|
|
4982
|
+
status?: string;
|
|
4983
|
+
static names(): { [key: string]: string } {
|
|
4984
|
+
return {
|
|
4985
|
+
progress: 'Progress',
|
|
4986
|
+
status: 'Status',
|
|
4987
|
+
};
|
|
4988
|
+
}
|
|
4989
|
+
|
|
4990
|
+
static types(): { [key: string]: any } {
|
|
4991
|
+
return {
|
|
4992
|
+
progress: 'number',
|
|
4993
|
+
status: 'string',
|
|
4994
|
+
};
|
|
4995
|
+
}
|
|
4996
|
+
|
|
4997
|
+
constructor(map?: { [key: string]: any }) {
|
|
4998
|
+
super(map);
|
|
4999
|
+
}
|
|
5000
|
+
}
|
|
5001
|
+
|
|
5002
|
+
export class GetScenePackUrlResponseBodyData extends $tea.Model {
|
|
5003
|
+
expire?: string;
|
|
5004
|
+
url?: string;
|
|
5005
|
+
valid?: boolean;
|
|
5006
|
+
static names(): { [key: string]: string } {
|
|
5007
|
+
return {
|
|
5008
|
+
expire: 'Expire',
|
|
5009
|
+
url: 'Url',
|
|
5010
|
+
valid: 'Valid',
|
|
5011
|
+
};
|
|
5012
|
+
}
|
|
5013
|
+
|
|
5014
|
+
static types(): { [key: string]: any } {
|
|
5015
|
+
return {
|
|
5016
|
+
expire: 'string',
|
|
5017
|
+
url: 'string',
|
|
5018
|
+
valid: 'boolean',
|
|
5019
|
+
};
|
|
5020
|
+
}
|
|
5021
|
+
|
|
5022
|
+
constructor(map?: { [key: string]: any }) {
|
|
5023
|
+
super(map);
|
|
5024
|
+
}
|
|
5025
|
+
}
|
|
5026
|
+
|
|
4265
5027
|
export class GetScenePreviewDataResponseBodyDataModelPanoListPosition extends $tea.Model {
|
|
4266
5028
|
rotation?: number[];
|
|
4267
5029
|
spot?: number[];
|
|
@@ -4793,6 +5555,25 @@ export class ListSubSceneResponseBodyList extends $tea.Model {
|
|
|
4793
5555
|
}
|
|
4794
5556
|
}
|
|
4795
5557
|
|
|
5558
|
+
export class PackSceneResponseBodyData extends $tea.Model {
|
|
5559
|
+
taskId?: string;
|
|
5560
|
+
static names(): { [key: string]: string } {
|
|
5561
|
+
return {
|
|
5562
|
+
taskId: 'TaskId',
|
|
5563
|
+
};
|
|
5564
|
+
}
|
|
5565
|
+
|
|
5566
|
+
static types(): { [key: string]: any } {
|
|
5567
|
+
return {
|
|
5568
|
+
taskId: 'string',
|
|
5569
|
+
};
|
|
5570
|
+
}
|
|
5571
|
+
|
|
5572
|
+
constructor(map?: { [key: string]: any }) {
|
|
5573
|
+
super(map);
|
|
5574
|
+
}
|
|
5575
|
+
}
|
|
5576
|
+
|
|
4796
5577
|
|
|
4797
5578
|
export default class Client extends OpenApi {
|
|
4798
5579
|
|
|
@@ -5054,6 +5835,39 @@ export default class Client extends OpenApi {
|
|
|
5054
5835
|
return await this.checkUserPropertyWithOptions(request, runtime);
|
|
5055
5836
|
}
|
|
5056
5837
|
|
|
5838
|
+
async copySceneWithOptions(request: CopySceneRequest, runtime: $Util.RuntimeOptions): Promise<CopySceneResponse> {
|
|
5839
|
+
Util.validateModel(request);
|
|
5840
|
+
let query = { };
|
|
5841
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
5842
|
+
query["SceneId"] = request.sceneId;
|
|
5843
|
+
}
|
|
5844
|
+
|
|
5845
|
+
if (!Util.isUnset(request.sceneName)) {
|
|
5846
|
+
query["SceneName"] = request.sceneName;
|
|
5847
|
+
}
|
|
5848
|
+
|
|
5849
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
5850
|
+
query: OpenApiUtil.query(query),
|
|
5851
|
+
});
|
|
5852
|
+
let params = new $OpenApi.Params({
|
|
5853
|
+
action: "CopyScene",
|
|
5854
|
+
version: "2020-01-01",
|
|
5855
|
+
protocol: "HTTPS",
|
|
5856
|
+
pathname: "/",
|
|
5857
|
+
method: "POST",
|
|
5858
|
+
authType: "AK",
|
|
5859
|
+
style: "RPC",
|
|
5860
|
+
reqBodyType: "formData",
|
|
5861
|
+
bodyType: "json",
|
|
5862
|
+
});
|
|
5863
|
+
return $tea.cast<CopySceneResponse>(await this.callApi(params, req, runtime), new CopySceneResponse({}));
|
|
5864
|
+
}
|
|
5865
|
+
|
|
5866
|
+
async copyScene(request: CopySceneRequest): Promise<CopySceneResponse> {
|
|
5867
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
5868
|
+
return await this.copySceneWithOptions(request, runtime);
|
|
5869
|
+
}
|
|
5870
|
+
|
|
5057
5871
|
async detailProjectWithOptions(request: DetailProjectRequest, runtime: $Util.RuntimeOptions): Promise<DetailProjectResponse> {
|
|
5058
5872
|
Util.validateModel(request);
|
|
5059
5873
|
let query = { };
|
|
@@ -5257,6 +6071,35 @@ export default class Client extends OpenApi {
|
|
|
5257
6071
|
return await this.getConnDataWithOptions(request, runtime);
|
|
5258
6072
|
}
|
|
5259
6073
|
|
|
6074
|
+
async getCopySceneTaskStatusWithOptions(request: GetCopySceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetCopySceneTaskStatusResponse> {
|
|
6075
|
+
Util.validateModel(request);
|
|
6076
|
+
let query = { };
|
|
6077
|
+
if (!Util.isUnset(request.taskId)) {
|
|
6078
|
+
query["TaskId"] = request.taskId;
|
|
6079
|
+
}
|
|
6080
|
+
|
|
6081
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6082
|
+
query: OpenApiUtil.query(query),
|
|
6083
|
+
});
|
|
6084
|
+
let params = new $OpenApi.Params({
|
|
6085
|
+
action: "GetCopySceneTaskStatus",
|
|
6086
|
+
version: "2020-01-01",
|
|
6087
|
+
protocol: "HTTPS",
|
|
6088
|
+
pathname: "/",
|
|
6089
|
+
method: "POST",
|
|
6090
|
+
authType: "AK",
|
|
6091
|
+
style: "RPC",
|
|
6092
|
+
reqBodyType: "formData",
|
|
6093
|
+
bodyType: "json",
|
|
6094
|
+
});
|
|
6095
|
+
return $tea.cast<GetCopySceneTaskStatusResponse>(await this.callApi(params, req, runtime), new GetCopySceneTaskStatusResponse({}));
|
|
6096
|
+
}
|
|
6097
|
+
|
|
6098
|
+
async getCopySceneTaskStatus(request: GetCopySceneTaskStatusRequest): Promise<GetCopySceneTaskStatusResponse> {
|
|
6099
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6100
|
+
return await this.getCopySceneTaskStatusWithOptions(request, runtime);
|
|
6101
|
+
}
|
|
6102
|
+
|
|
5260
6103
|
async getHotspotConfigWithOptions(request: GetHotspotConfigRequest, runtime: $Util.RuntimeOptions): Promise<GetHotspotConfigResponse> {
|
|
5261
6104
|
Util.validateModel(request);
|
|
5262
6105
|
let query = { };
|
|
@@ -5471,6 +6314,39 @@ export default class Client extends OpenApi {
|
|
|
5471
6314
|
return await this.getOssPolicyWithOptions(request, runtime);
|
|
5472
6315
|
}
|
|
5473
6316
|
|
|
6317
|
+
async getPackSceneTaskStatusWithOptions(request: GetPackSceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetPackSceneTaskStatusResponse> {
|
|
6318
|
+
Util.validateModel(request);
|
|
6319
|
+
let query = { };
|
|
6320
|
+
if (!Util.isUnset(request.taskId)) {
|
|
6321
|
+
query["TaskId"] = request.taskId;
|
|
6322
|
+
}
|
|
6323
|
+
|
|
6324
|
+
if (!Util.isUnset(request.type)) {
|
|
6325
|
+
query["Type"] = request.type;
|
|
6326
|
+
}
|
|
6327
|
+
|
|
6328
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6329
|
+
query: OpenApiUtil.query(query),
|
|
6330
|
+
});
|
|
6331
|
+
let params = new $OpenApi.Params({
|
|
6332
|
+
action: "GetPackSceneTaskStatus",
|
|
6333
|
+
version: "2020-01-01",
|
|
6334
|
+
protocol: "HTTPS",
|
|
6335
|
+
pathname: "/",
|
|
6336
|
+
method: "POST",
|
|
6337
|
+
authType: "AK",
|
|
6338
|
+
style: "RPC",
|
|
6339
|
+
reqBodyType: "formData",
|
|
6340
|
+
bodyType: "json",
|
|
6341
|
+
});
|
|
6342
|
+
return $tea.cast<GetPackSceneTaskStatusResponse>(await this.callApi(params, req, runtime), new GetPackSceneTaskStatusResponse({}));
|
|
6343
|
+
}
|
|
6344
|
+
|
|
6345
|
+
async getPackSceneTaskStatus(request: GetPackSceneTaskStatusRequest): Promise<GetPackSceneTaskStatusResponse> {
|
|
6346
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6347
|
+
return await this.getPackSceneTaskStatusWithOptions(request, runtime);
|
|
6348
|
+
}
|
|
6349
|
+
|
|
5474
6350
|
async getRectifyImageWithOptions(request: GetRectifyImageRequest, runtime: $Util.RuntimeOptions): Promise<GetRectifyImageResponse> {
|
|
5475
6351
|
Util.validateModel(request);
|
|
5476
6352
|
let query = { };
|
|
@@ -5529,6 +6405,35 @@ export default class Client extends OpenApi {
|
|
|
5529
6405
|
return await this.getSceneBuildTaskStatusWithOptions(request, runtime);
|
|
5530
6406
|
}
|
|
5531
6407
|
|
|
6408
|
+
async getScenePackUrlWithOptions(request: GetScenePackUrlRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePackUrlResponse> {
|
|
6409
|
+
Util.validateModel(request);
|
|
6410
|
+
let query = { };
|
|
6411
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
6412
|
+
query["SceneId"] = request.sceneId;
|
|
6413
|
+
}
|
|
6414
|
+
|
|
6415
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6416
|
+
query: OpenApiUtil.query(query),
|
|
6417
|
+
});
|
|
6418
|
+
let params = new $OpenApi.Params({
|
|
6419
|
+
action: "GetScenePackUrl",
|
|
6420
|
+
version: "2020-01-01",
|
|
6421
|
+
protocol: "HTTPS",
|
|
6422
|
+
pathname: "/",
|
|
6423
|
+
method: "POST",
|
|
6424
|
+
authType: "AK",
|
|
6425
|
+
style: "RPC",
|
|
6426
|
+
reqBodyType: "formData",
|
|
6427
|
+
bodyType: "json",
|
|
6428
|
+
});
|
|
6429
|
+
return $tea.cast<GetScenePackUrlResponse>(await this.callApi(params, req, runtime), new GetScenePackUrlResponse({}));
|
|
6430
|
+
}
|
|
6431
|
+
|
|
6432
|
+
async getScenePackUrl(request: GetScenePackUrlRequest): Promise<GetScenePackUrlResponse> {
|
|
6433
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6434
|
+
return await this.getScenePackUrlWithOptions(request, runtime);
|
|
6435
|
+
}
|
|
6436
|
+
|
|
5532
6437
|
async getScenePreviewDataWithOptions(request: GetScenePreviewDataRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewDataResponse> {
|
|
5533
6438
|
Util.validateModel(request);
|
|
5534
6439
|
let query = { };
|
|
@@ -5923,6 +6828,10 @@ export default class Client extends OpenApi {
|
|
|
5923
6828
|
query["ShowLayoutData"] = request.showLayoutData;
|
|
5924
6829
|
}
|
|
5925
6830
|
|
|
6831
|
+
if (!Util.isUnset(request.sortField)) {
|
|
6832
|
+
query["SortField"] = request.sortField;
|
|
6833
|
+
}
|
|
6834
|
+
|
|
5926
6835
|
let req = new $OpenApi.OpenApiRequest({
|
|
5927
6836
|
query: OpenApiUtil.query(query),
|
|
5928
6837
|
});
|
|
@@ -5974,6 +6883,39 @@ export default class Client extends OpenApi {
|
|
|
5974
6883
|
return await this.optimizeRightAngleWithOptions(request, runtime);
|
|
5975
6884
|
}
|
|
5976
6885
|
|
|
6886
|
+
async packSceneWithOptions(request: PackSceneRequest, runtime: $Util.RuntimeOptions): Promise<PackSceneResponse> {
|
|
6887
|
+
Util.validateModel(request);
|
|
6888
|
+
let query = { };
|
|
6889
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
6890
|
+
query["SceneId"] = request.sceneId;
|
|
6891
|
+
}
|
|
6892
|
+
|
|
6893
|
+
if (!Util.isUnset(request.type)) {
|
|
6894
|
+
query["Type"] = request.type;
|
|
6895
|
+
}
|
|
6896
|
+
|
|
6897
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6898
|
+
query: OpenApiUtil.query(query),
|
|
6899
|
+
});
|
|
6900
|
+
let params = new $OpenApi.Params({
|
|
6901
|
+
action: "PackScene",
|
|
6902
|
+
version: "2020-01-01",
|
|
6903
|
+
protocol: "HTTPS",
|
|
6904
|
+
pathname: "/",
|
|
6905
|
+
method: "POST",
|
|
6906
|
+
authType: "AK",
|
|
6907
|
+
style: "RPC",
|
|
6908
|
+
reqBodyType: "formData",
|
|
6909
|
+
bodyType: "json",
|
|
6910
|
+
});
|
|
6911
|
+
return $tea.cast<PackSceneResponse>(await this.callApi(params, req, runtime), new PackSceneResponse({}));
|
|
6912
|
+
}
|
|
6913
|
+
|
|
6914
|
+
async packScene(request: PackSceneRequest): Promise<PackSceneResponse> {
|
|
6915
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6916
|
+
return await this.packSceneWithOptions(request, runtime);
|
|
6917
|
+
}
|
|
6918
|
+
|
|
5977
6919
|
async predImageWithOptions(request: PredImageRequest, runtime: $Util.RuntimeOptions): Promise<PredImageResponse> {
|
|
5978
6920
|
Util.validateModel(request);
|
|
5979
6921
|
let query = { };
|
|
@@ -6560,8 +7502,14 @@ export default class Client extends OpenApi {
|
|
|
6560
7502
|
return await this.updateSceneWithOptions(request, runtime);
|
|
6561
7503
|
}
|
|
6562
7504
|
|
|
6563
|
-
async updateSubSceneWithOptions(
|
|
6564
|
-
Util.validateModel(
|
|
7505
|
+
async updateSubSceneWithOptions(tmpReq: UpdateSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSubSceneResponse> {
|
|
7506
|
+
Util.validateModel(tmpReq);
|
|
7507
|
+
let request = new UpdateSubSceneShrinkRequest({ });
|
|
7508
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
7509
|
+
if (!Util.isUnset(tmpReq.viewPoint)) {
|
|
7510
|
+
request.viewPointShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.viewPoint, "ViewPoint", "json");
|
|
7511
|
+
}
|
|
7512
|
+
|
|
6565
7513
|
let query = { };
|
|
6566
7514
|
if (!Util.isUnset(request.id)) {
|
|
6567
7515
|
query["Id"] = request.id;
|
|
@@ -6571,6 +7519,10 @@ export default class Client extends OpenApi {
|
|
|
6571
7519
|
query["Name"] = request.name;
|
|
6572
7520
|
}
|
|
6573
7521
|
|
|
7522
|
+
if (!Util.isUnset(request.viewPointShrink)) {
|
|
7523
|
+
query["ViewPoint"] = request.viewPointShrink;
|
|
7524
|
+
}
|
|
7525
|
+
|
|
6574
7526
|
let req = new $OpenApi.OpenApiRequest({
|
|
6575
7527
|
query: OpenApiUtil.query(query),
|
|
6576
7528
|
});
|
|
@@ -6593,4 +7545,43 @@ export default class Client extends OpenApi {
|
|
|
6593
7545
|
return await this.updateSubSceneWithOptions(request, runtime);
|
|
6594
7546
|
}
|
|
6595
7547
|
|
|
7548
|
+
async updateSubSceneSeqWithOptions(tmpReq: UpdateSubSceneSeqRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSubSceneSeqResponse> {
|
|
7549
|
+
Util.validateModel(tmpReq);
|
|
7550
|
+
let request = new UpdateSubSceneSeqShrinkRequest({ });
|
|
7551
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
7552
|
+
if (!Util.isUnset(tmpReq.sortSubSceneIds)) {
|
|
7553
|
+
request.sortSubSceneIdsShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.sortSubSceneIds, "SortSubSceneIds", "json");
|
|
7554
|
+
}
|
|
7555
|
+
|
|
7556
|
+
let query = { };
|
|
7557
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
7558
|
+
query["SceneId"] = request.sceneId;
|
|
7559
|
+
}
|
|
7560
|
+
|
|
7561
|
+
if (!Util.isUnset(request.sortSubSceneIdsShrink)) {
|
|
7562
|
+
query["SortSubSceneIds"] = request.sortSubSceneIdsShrink;
|
|
7563
|
+
}
|
|
7564
|
+
|
|
7565
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7566
|
+
query: OpenApiUtil.query(query),
|
|
7567
|
+
});
|
|
7568
|
+
let params = new $OpenApi.Params({
|
|
7569
|
+
action: "UpdateSubSceneSeq",
|
|
7570
|
+
version: "2020-01-01",
|
|
7571
|
+
protocol: "HTTPS",
|
|
7572
|
+
pathname: "/",
|
|
7573
|
+
method: "POST",
|
|
7574
|
+
authType: "AK",
|
|
7575
|
+
style: "RPC",
|
|
7576
|
+
reqBodyType: "formData",
|
|
7577
|
+
bodyType: "json",
|
|
7578
|
+
});
|
|
7579
|
+
return $tea.cast<UpdateSubSceneSeqResponse>(await this.callApi(params, req, runtime), new UpdateSubSceneSeqResponse({}));
|
|
7580
|
+
}
|
|
7581
|
+
|
|
7582
|
+
async updateSubSceneSeq(request: UpdateSubSceneSeqRequest): Promise<UpdateSubSceneSeqResponse> {
|
|
7583
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7584
|
+
return await this.updateSubSceneSeqWithOptions(request, runtime);
|
|
7585
|
+
}
|
|
7586
|
+
|
|
6596
7587
|
}
|