@alicloud/aliding20230426 2.3.1 → 2.3.3
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 +95 -0
- package/dist/client.js +160 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +207 -0
package/dist/client.d.ts
CHANGED
|
@@ -1710,8 +1710,10 @@ export declare class CreateMeetingRoomShrinkHeaders extends $tea.Model {
|
|
|
1710
1710
|
});
|
|
1711
1711
|
}
|
|
1712
1712
|
export declare class CreateMeetingRoomRequest extends $tea.Model {
|
|
1713
|
+
enableCycleReservation?: boolean;
|
|
1713
1714
|
groupId?: number;
|
|
1714
1715
|
isvRoomId?: string;
|
|
1716
|
+
reservationAuthority?: CreateMeetingRoomRequestReservationAuthority;
|
|
1715
1717
|
roomCapacity?: number;
|
|
1716
1718
|
roomLabelIds?: number[];
|
|
1717
1719
|
roomLocation?: CreateMeetingRoomRequestRoomLocation;
|
|
@@ -1730,8 +1732,10 @@ export declare class CreateMeetingRoomRequest extends $tea.Model {
|
|
|
1730
1732
|
});
|
|
1731
1733
|
}
|
|
1732
1734
|
export declare class CreateMeetingRoomShrinkRequest extends $tea.Model {
|
|
1735
|
+
enableCycleReservation?: boolean;
|
|
1733
1736
|
groupId?: number;
|
|
1734
1737
|
isvRoomId?: string;
|
|
1738
|
+
reservationAuthorityShrink?: string;
|
|
1735
1739
|
roomCapacity?: number;
|
|
1736
1740
|
roomLabelIdsShrink?: string;
|
|
1737
1741
|
roomLocationShrink?: string;
|
|
@@ -1752,6 +1756,8 @@ export declare class CreateMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
1752
1756
|
export declare class CreateMeetingRoomResponseBody extends $tea.Model {
|
|
1753
1757
|
requestId?: string;
|
|
1754
1758
|
result?: string;
|
|
1759
|
+
vendorRequestId?: string;
|
|
1760
|
+
vendorType?: string;
|
|
1755
1761
|
static names(): {
|
|
1756
1762
|
[key: string]: string;
|
|
1757
1763
|
};
|
|
@@ -8958,6 +8964,8 @@ export declare class QueryMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
8958
8964
|
export declare class QueryMeetingRoomResponseBody extends $tea.Model {
|
|
8959
8965
|
requestId?: string;
|
|
8960
8966
|
result?: QueryMeetingRoomResponseBodyResult;
|
|
8967
|
+
vendorRequestId?: string;
|
|
8968
|
+
vendorType?: string;
|
|
8961
8969
|
static names(): {
|
|
8962
8970
|
[key: string]: string;
|
|
8963
8971
|
};
|
|
@@ -12063,8 +12071,10 @@ export declare class UpdateMeetingRoomShrinkHeaders extends $tea.Model {
|
|
|
12063
12071
|
});
|
|
12064
12072
|
}
|
|
12065
12073
|
export declare class UpdateMeetingRoomRequest extends $tea.Model {
|
|
12074
|
+
enableCycleReservation?: boolean;
|
|
12066
12075
|
groupId?: number;
|
|
12067
12076
|
isvRoomId?: string;
|
|
12077
|
+
reservationAuthority?: UpdateMeetingRoomRequestReservationAuthority;
|
|
12068
12078
|
roomCapacity?: number;
|
|
12069
12079
|
roomId?: string;
|
|
12070
12080
|
roomLabelIds?: number[];
|
|
@@ -12084,8 +12094,10 @@ export declare class UpdateMeetingRoomRequest extends $tea.Model {
|
|
|
12084
12094
|
});
|
|
12085
12095
|
}
|
|
12086
12096
|
export declare class UpdateMeetingRoomShrinkRequest extends $tea.Model {
|
|
12097
|
+
enableCycleReservation?: boolean;
|
|
12087
12098
|
groupId?: number;
|
|
12088
12099
|
isvRoomId?: string;
|
|
12100
|
+
reservationAuthorityShrink?: string;
|
|
12089
12101
|
roomCapacity?: number;
|
|
12090
12102
|
roomId?: string;
|
|
12091
12103
|
roomLabelIdsShrink?: string;
|
|
@@ -12107,6 +12119,8 @@ export declare class UpdateMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
12107
12119
|
export declare class UpdateMeetingRoomResponseBody extends $tea.Model {
|
|
12108
12120
|
result?: boolean;
|
|
12109
12121
|
requestId?: string;
|
|
12122
|
+
vendorRequestId?: string;
|
|
12123
|
+
vendorType?: string;
|
|
12110
12124
|
static names(): {
|
|
12111
12125
|
[key: string]: string;
|
|
12112
12126
|
};
|
|
@@ -14053,6 +14067,32 @@ export declare class CreateMeetingRoomHeadersAccountContext extends $tea.Model {
|
|
|
14053
14067
|
[key: string]: any;
|
|
14054
14068
|
});
|
|
14055
14069
|
}
|
|
14070
|
+
export declare class CreateMeetingRoomRequestReservationAuthorityAuthorizedMembers extends $tea.Model {
|
|
14071
|
+
memberId?: string;
|
|
14072
|
+
memberName?: string;
|
|
14073
|
+
memberType?: string;
|
|
14074
|
+
static names(): {
|
|
14075
|
+
[key: string]: string;
|
|
14076
|
+
};
|
|
14077
|
+
static types(): {
|
|
14078
|
+
[key: string]: any;
|
|
14079
|
+
};
|
|
14080
|
+
constructor(map?: {
|
|
14081
|
+
[key: string]: any;
|
|
14082
|
+
});
|
|
14083
|
+
}
|
|
14084
|
+
export declare class CreateMeetingRoomRequestReservationAuthority extends $tea.Model {
|
|
14085
|
+
authorizedMembers?: CreateMeetingRoomRequestReservationAuthorityAuthorizedMembers[];
|
|
14086
|
+
static names(): {
|
|
14087
|
+
[key: string]: string;
|
|
14088
|
+
};
|
|
14089
|
+
static types(): {
|
|
14090
|
+
[key: string]: any;
|
|
14091
|
+
};
|
|
14092
|
+
constructor(map?: {
|
|
14093
|
+
[key: string]: any;
|
|
14094
|
+
});
|
|
14095
|
+
}
|
|
14056
14096
|
export declare class CreateMeetingRoomRequestRoomLocation extends $tea.Model {
|
|
14057
14097
|
desc?: string;
|
|
14058
14098
|
title?: string;
|
|
@@ -18546,6 +18586,32 @@ export declare class QueryMeetingRoomRequestTenantContext extends $tea.Model {
|
|
|
18546
18586
|
[key: string]: any;
|
|
18547
18587
|
});
|
|
18548
18588
|
}
|
|
18589
|
+
export declare class QueryMeetingRoomResponseBodyResultReservationAuthorityAuthorizedMembers extends $tea.Model {
|
|
18590
|
+
memberId?: string;
|
|
18591
|
+
memberName?: string;
|
|
18592
|
+
memberType?: string;
|
|
18593
|
+
static names(): {
|
|
18594
|
+
[key: string]: string;
|
|
18595
|
+
};
|
|
18596
|
+
static types(): {
|
|
18597
|
+
[key: string]: any;
|
|
18598
|
+
};
|
|
18599
|
+
constructor(map?: {
|
|
18600
|
+
[key: string]: any;
|
|
18601
|
+
});
|
|
18602
|
+
}
|
|
18603
|
+
export declare class QueryMeetingRoomResponseBodyResultReservationAuthority extends $tea.Model {
|
|
18604
|
+
authorizedMembers?: QueryMeetingRoomResponseBodyResultReservationAuthorityAuthorizedMembers[];
|
|
18605
|
+
static names(): {
|
|
18606
|
+
[key: string]: string;
|
|
18607
|
+
};
|
|
18608
|
+
static types(): {
|
|
18609
|
+
[key: string]: any;
|
|
18610
|
+
};
|
|
18611
|
+
constructor(map?: {
|
|
18612
|
+
[key: string]: any;
|
|
18613
|
+
});
|
|
18614
|
+
}
|
|
18549
18615
|
export declare class QueryMeetingRoomResponseBodyResultRoomGroup extends $tea.Model {
|
|
18550
18616
|
groupId?: number;
|
|
18551
18617
|
groupName?: string;
|
|
@@ -18588,7 +18654,10 @@ export declare class QueryMeetingRoomResponseBodyResultRoomLocation extends $tea
|
|
|
18588
18654
|
}
|
|
18589
18655
|
export declare class QueryMeetingRoomResponseBodyResult extends $tea.Model {
|
|
18590
18656
|
corpId?: string;
|
|
18657
|
+
deviceUnionIds?: string[];
|
|
18658
|
+
enableCycleReservation?: boolean;
|
|
18591
18659
|
isvRoomId?: string;
|
|
18660
|
+
reservationAuthority?: QueryMeetingRoomResponseBodyResultReservationAuthority;
|
|
18592
18661
|
roomCapacity?: number;
|
|
18593
18662
|
roomGroup?: QueryMeetingRoomResponseBodyResultRoomGroup;
|
|
18594
18663
|
roomId?: string;
|
|
@@ -19761,6 +19830,32 @@ export declare class UpdateMeetingRoomHeadersAccountContext extends $tea.Model {
|
|
|
19761
19830
|
[key: string]: any;
|
|
19762
19831
|
});
|
|
19763
19832
|
}
|
|
19833
|
+
export declare class UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers extends $tea.Model {
|
|
19834
|
+
memberId?: string;
|
|
19835
|
+
memberName?: string;
|
|
19836
|
+
memberType?: string;
|
|
19837
|
+
static names(): {
|
|
19838
|
+
[key: string]: string;
|
|
19839
|
+
};
|
|
19840
|
+
static types(): {
|
|
19841
|
+
[key: string]: any;
|
|
19842
|
+
};
|
|
19843
|
+
constructor(map?: {
|
|
19844
|
+
[key: string]: any;
|
|
19845
|
+
});
|
|
19846
|
+
}
|
|
19847
|
+
export declare class UpdateMeetingRoomRequestReservationAuthority extends $tea.Model {
|
|
19848
|
+
authorizedMembers?: UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers[];
|
|
19849
|
+
static names(): {
|
|
19850
|
+
[key: string]: string;
|
|
19851
|
+
};
|
|
19852
|
+
static types(): {
|
|
19853
|
+
[key: string]: any;
|
|
19854
|
+
};
|
|
19855
|
+
constructor(map?: {
|
|
19856
|
+
[key: string]: any;
|
|
19857
|
+
});
|
|
19858
|
+
}
|
|
19764
19859
|
export declare class UpdateMeetingRoomRequestRoomLocation extends $tea.Model {
|
|
19765
19860
|
desc?: string;
|
|
19766
19861
|
title?: string;
|
package/dist/client.js
CHANGED
|
@@ -2323,8 +2323,10 @@ class CreateMeetingRoomRequest extends $tea.Model {
|
|
|
2323
2323
|
}
|
|
2324
2324
|
static names() {
|
|
2325
2325
|
return {
|
|
2326
|
+
enableCycleReservation: 'EnableCycleReservation',
|
|
2326
2327
|
groupId: 'GroupId',
|
|
2327
2328
|
isvRoomId: 'IsvRoomId',
|
|
2329
|
+
reservationAuthority: 'ReservationAuthority',
|
|
2328
2330
|
roomCapacity: 'RoomCapacity',
|
|
2329
2331
|
roomLabelIds: 'RoomLabelIds',
|
|
2330
2332
|
roomLocation: 'RoomLocation',
|
|
@@ -2336,8 +2338,10 @@ class CreateMeetingRoomRequest extends $tea.Model {
|
|
|
2336
2338
|
}
|
|
2337
2339
|
static types() {
|
|
2338
2340
|
return {
|
|
2341
|
+
enableCycleReservation: 'boolean',
|
|
2339
2342
|
groupId: 'number',
|
|
2340
2343
|
isvRoomId: 'string',
|
|
2344
|
+
reservationAuthority: CreateMeetingRoomRequestReservationAuthority,
|
|
2341
2345
|
roomCapacity: 'number',
|
|
2342
2346
|
roomLabelIds: { 'type': 'array', 'itemType': 'number' },
|
|
2343
2347
|
roomLocation: CreateMeetingRoomRequestRoomLocation,
|
|
@@ -2355,8 +2359,10 @@ class CreateMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
2355
2359
|
}
|
|
2356
2360
|
static names() {
|
|
2357
2361
|
return {
|
|
2362
|
+
enableCycleReservation: 'EnableCycleReservation',
|
|
2358
2363
|
groupId: 'GroupId',
|
|
2359
2364
|
isvRoomId: 'IsvRoomId',
|
|
2365
|
+
reservationAuthorityShrink: 'ReservationAuthority',
|
|
2360
2366
|
roomCapacity: 'RoomCapacity',
|
|
2361
2367
|
roomLabelIdsShrink: 'RoomLabelIds',
|
|
2362
2368
|
roomLocationShrink: 'RoomLocation',
|
|
@@ -2368,8 +2374,10 @@ class CreateMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
2368
2374
|
}
|
|
2369
2375
|
static types() {
|
|
2370
2376
|
return {
|
|
2377
|
+
enableCycleReservation: 'boolean',
|
|
2371
2378
|
groupId: 'number',
|
|
2372
2379
|
isvRoomId: 'string',
|
|
2380
|
+
reservationAuthorityShrink: 'string',
|
|
2373
2381
|
roomCapacity: 'number',
|
|
2374
2382
|
roomLabelIdsShrink: 'string',
|
|
2375
2383
|
roomLocationShrink: 'string',
|
|
@@ -2389,12 +2397,16 @@ class CreateMeetingRoomResponseBody extends $tea.Model {
|
|
|
2389
2397
|
return {
|
|
2390
2398
|
requestId: 'requestId',
|
|
2391
2399
|
result: 'result',
|
|
2400
|
+
vendorRequestId: 'vendorRequestId',
|
|
2401
|
+
vendorType: 'vendorType',
|
|
2392
2402
|
};
|
|
2393
2403
|
}
|
|
2394
2404
|
static types() {
|
|
2395
2405
|
return {
|
|
2396
2406
|
requestId: 'string',
|
|
2397
2407
|
result: 'string',
|
|
2408
|
+
vendorRequestId: 'string',
|
|
2409
|
+
vendorType: 'string',
|
|
2398
2410
|
};
|
|
2399
2411
|
}
|
|
2400
2412
|
}
|
|
@@ -12077,12 +12089,16 @@ class QueryMeetingRoomResponseBody extends $tea.Model {
|
|
|
12077
12089
|
return {
|
|
12078
12090
|
requestId: 'requestId',
|
|
12079
12091
|
result: 'result',
|
|
12092
|
+
vendorRequestId: 'vendorRequestId',
|
|
12093
|
+
vendorType: 'vendorType',
|
|
12080
12094
|
};
|
|
12081
12095
|
}
|
|
12082
12096
|
static types() {
|
|
12083
12097
|
return {
|
|
12084
12098
|
requestId: 'string',
|
|
12085
12099
|
result: QueryMeetingRoomResponseBodyResult,
|
|
12100
|
+
vendorRequestId: 'string',
|
|
12101
|
+
vendorType: 'string',
|
|
12086
12102
|
};
|
|
12087
12103
|
}
|
|
12088
12104
|
}
|
|
@@ -16217,8 +16233,10 @@ class UpdateMeetingRoomRequest extends $tea.Model {
|
|
|
16217
16233
|
}
|
|
16218
16234
|
static names() {
|
|
16219
16235
|
return {
|
|
16236
|
+
enableCycleReservation: 'EnableCycleReservation',
|
|
16220
16237
|
groupId: 'GroupId',
|
|
16221
16238
|
isvRoomId: 'IsvRoomId',
|
|
16239
|
+
reservationAuthority: 'ReservationAuthority',
|
|
16222
16240
|
roomCapacity: 'RoomCapacity',
|
|
16223
16241
|
roomId: 'RoomId',
|
|
16224
16242
|
roomLabelIds: 'RoomLabelIds',
|
|
@@ -16231,8 +16249,10 @@ class UpdateMeetingRoomRequest extends $tea.Model {
|
|
|
16231
16249
|
}
|
|
16232
16250
|
static types() {
|
|
16233
16251
|
return {
|
|
16252
|
+
enableCycleReservation: 'boolean',
|
|
16234
16253
|
groupId: 'number',
|
|
16235
16254
|
isvRoomId: 'string',
|
|
16255
|
+
reservationAuthority: UpdateMeetingRoomRequestReservationAuthority,
|
|
16236
16256
|
roomCapacity: 'number',
|
|
16237
16257
|
roomId: 'string',
|
|
16238
16258
|
roomLabelIds: { 'type': 'array', 'itemType': 'number' },
|
|
@@ -16251,8 +16271,10 @@ class UpdateMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
16251
16271
|
}
|
|
16252
16272
|
static names() {
|
|
16253
16273
|
return {
|
|
16274
|
+
enableCycleReservation: 'EnableCycleReservation',
|
|
16254
16275
|
groupId: 'GroupId',
|
|
16255
16276
|
isvRoomId: 'IsvRoomId',
|
|
16277
|
+
reservationAuthorityShrink: 'ReservationAuthority',
|
|
16256
16278
|
roomCapacity: 'RoomCapacity',
|
|
16257
16279
|
roomId: 'RoomId',
|
|
16258
16280
|
roomLabelIdsShrink: 'RoomLabelIds',
|
|
@@ -16265,8 +16287,10 @@ class UpdateMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
16265
16287
|
}
|
|
16266
16288
|
static types() {
|
|
16267
16289
|
return {
|
|
16290
|
+
enableCycleReservation: 'boolean',
|
|
16268
16291
|
groupId: 'number',
|
|
16269
16292
|
isvRoomId: 'string',
|
|
16293
|
+
reservationAuthorityShrink: 'string',
|
|
16270
16294
|
roomCapacity: 'number',
|
|
16271
16295
|
roomId: 'string',
|
|
16272
16296
|
roomLabelIdsShrink: 'string',
|
|
@@ -16287,12 +16311,16 @@ class UpdateMeetingRoomResponseBody extends $tea.Model {
|
|
|
16287
16311
|
return {
|
|
16288
16312
|
result: 'Result',
|
|
16289
16313
|
requestId: 'requestId',
|
|
16314
|
+
vendorRequestId: 'vendorRequestId',
|
|
16315
|
+
vendorType: 'vendorType',
|
|
16290
16316
|
};
|
|
16291
16317
|
}
|
|
16292
16318
|
static types() {
|
|
16293
16319
|
return {
|
|
16294
16320
|
result: 'boolean',
|
|
16295
16321
|
requestId: 'string',
|
|
16322
|
+
vendorRequestId: 'string',
|
|
16323
|
+
vendorType: 'string',
|
|
16296
16324
|
};
|
|
16297
16325
|
}
|
|
16298
16326
|
}
|
|
@@ -18929,6 +18957,42 @@ class CreateMeetingRoomHeadersAccountContext extends $tea.Model {
|
|
|
18929
18957
|
}
|
|
18930
18958
|
}
|
|
18931
18959
|
exports.CreateMeetingRoomHeadersAccountContext = CreateMeetingRoomHeadersAccountContext;
|
|
18960
|
+
class CreateMeetingRoomRequestReservationAuthorityAuthorizedMembers extends $tea.Model {
|
|
18961
|
+
constructor(map) {
|
|
18962
|
+
super(map);
|
|
18963
|
+
}
|
|
18964
|
+
static names() {
|
|
18965
|
+
return {
|
|
18966
|
+
memberId: 'MemberId',
|
|
18967
|
+
memberName: 'MemberName',
|
|
18968
|
+
memberType: 'MemberType',
|
|
18969
|
+
};
|
|
18970
|
+
}
|
|
18971
|
+
static types() {
|
|
18972
|
+
return {
|
|
18973
|
+
memberId: 'string',
|
|
18974
|
+
memberName: 'string',
|
|
18975
|
+
memberType: 'string',
|
|
18976
|
+
};
|
|
18977
|
+
}
|
|
18978
|
+
}
|
|
18979
|
+
exports.CreateMeetingRoomRequestReservationAuthorityAuthorizedMembers = CreateMeetingRoomRequestReservationAuthorityAuthorizedMembers;
|
|
18980
|
+
class CreateMeetingRoomRequestReservationAuthority extends $tea.Model {
|
|
18981
|
+
constructor(map) {
|
|
18982
|
+
super(map);
|
|
18983
|
+
}
|
|
18984
|
+
static names() {
|
|
18985
|
+
return {
|
|
18986
|
+
authorizedMembers: 'AuthorizedMembers',
|
|
18987
|
+
};
|
|
18988
|
+
}
|
|
18989
|
+
static types() {
|
|
18990
|
+
return {
|
|
18991
|
+
authorizedMembers: { 'type': 'array', 'itemType': CreateMeetingRoomRequestReservationAuthorityAuthorizedMembers },
|
|
18992
|
+
};
|
|
18993
|
+
}
|
|
18994
|
+
}
|
|
18995
|
+
exports.CreateMeetingRoomRequestReservationAuthority = CreateMeetingRoomRequestReservationAuthority;
|
|
18932
18996
|
class CreateMeetingRoomRequestRoomLocation extends $tea.Model {
|
|
18933
18997
|
constructor(map) {
|
|
18934
18998
|
super(map);
|
|
@@ -25339,6 +25403,42 @@ class QueryMeetingRoomRequestTenantContext extends $tea.Model {
|
|
|
25339
25403
|
}
|
|
25340
25404
|
}
|
|
25341
25405
|
exports.QueryMeetingRoomRequestTenantContext = QueryMeetingRoomRequestTenantContext;
|
|
25406
|
+
class QueryMeetingRoomResponseBodyResultReservationAuthorityAuthorizedMembers extends $tea.Model {
|
|
25407
|
+
constructor(map) {
|
|
25408
|
+
super(map);
|
|
25409
|
+
}
|
|
25410
|
+
static names() {
|
|
25411
|
+
return {
|
|
25412
|
+
memberId: 'MemberId',
|
|
25413
|
+
memberName: 'MemberName',
|
|
25414
|
+
memberType: 'MemberType',
|
|
25415
|
+
};
|
|
25416
|
+
}
|
|
25417
|
+
static types() {
|
|
25418
|
+
return {
|
|
25419
|
+
memberId: 'string',
|
|
25420
|
+
memberName: 'string',
|
|
25421
|
+
memberType: 'string',
|
|
25422
|
+
};
|
|
25423
|
+
}
|
|
25424
|
+
}
|
|
25425
|
+
exports.QueryMeetingRoomResponseBodyResultReservationAuthorityAuthorizedMembers = QueryMeetingRoomResponseBodyResultReservationAuthorityAuthorizedMembers;
|
|
25426
|
+
class QueryMeetingRoomResponseBodyResultReservationAuthority extends $tea.Model {
|
|
25427
|
+
constructor(map) {
|
|
25428
|
+
super(map);
|
|
25429
|
+
}
|
|
25430
|
+
static names() {
|
|
25431
|
+
return {
|
|
25432
|
+
authorizedMembers: 'AuthorizedMembers',
|
|
25433
|
+
};
|
|
25434
|
+
}
|
|
25435
|
+
static types() {
|
|
25436
|
+
return {
|
|
25437
|
+
authorizedMembers: { 'type': 'array', 'itemType': QueryMeetingRoomResponseBodyResultReservationAuthorityAuthorizedMembers },
|
|
25438
|
+
};
|
|
25439
|
+
}
|
|
25440
|
+
}
|
|
25441
|
+
exports.QueryMeetingRoomResponseBodyResultReservationAuthority = QueryMeetingRoomResponseBodyResultReservationAuthority;
|
|
25342
25442
|
class QueryMeetingRoomResponseBodyResultRoomGroup extends $tea.Model {
|
|
25343
25443
|
constructor(map) {
|
|
25344
25444
|
super(map);
|
|
@@ -25402,7 +25502,10 @@ class QueryMeetingRoomResponseBodyResult extends $tea.Model {
|
|
|
25402
25502
|
static names() {
|
|
25403
25503
|
return {
|
|
25404
25504
|
corpId: 'CorpId',
|
|
25505
|
+
deviceUnionIds: 'DeviceUnionIds',
|
|
25506
|
+
enableCycleReservation: 'EnableCycleReservation',
|
|
25405
25507
|
isvRoomId: 'IsvRoomId',
|
|
25508
|
+
reservationAuthority: 'ReservationAuthority',
|
|
25406
25509
|
roomCapacity: 'RoomCapacity',
|
|
25407
25510
|
roomGroup: 'RoomGroup',
|
|
25408
25511
|
roomId: 'RoomId',
|
|
@@ -25417,7 +25520,10 @@ class QueryMeetingRoomResponseBodyResult extends $tea.Model {
|
|
|
25417
25520
|
static types() {
|
|
25418
25521
|
return {
|
|
25419
25522
|
corpId: 'string',
|
|
25523
|
+
deviceUnionIds: { 'type': 'array', 'itemType': 'string' },
|
|
25524
|
+
enableCycleReservation: 'boolean',
|
|
25420
25525
|
isvRoomId: 'string',
|
|
25526
|
+
reservationAuthority: QueryMeetingRoomResponseBodyResultReservationAuthority,
|
|
25421
25527
|
roomCapacity: 'number',
|
|
25422
25528
|
roomGroup: QueryMeetingRoomResponseBodyResultRoomGroup,
|
|
25423
25529
|
roomId: 'string',
|
|
@@ -27029,6 +27135,42 @@ class UpdateMeetingRoomHeadersAccountContext extends $tea.Model {
|
|
|
27029
27135
|
}
|
|
27030
27136
|
}
|
|
27031
27137
|
exports.UpdateMeetingRoomHeadersAccountContext = UpdateMeetingRoomHeadersAccountContext;
|
|
27138
|
+
class UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers extends $tea.Model {
|
|
27139
|
+
constructor(map) {
|
|
27140
|
+
super(map);
|
|
27141
|
+
}
|
|
27142
|
+
static names() {
|
|
27143
|
+
return {
|
|
27144
|
+
memberId: 'MemberId',
|
|
27145
|
+
memberName: 'MemberName',
|
|
27146
|
+
memberType: 'MemberType',
|
|
27147
|
+
};
|
|
27148
|
+
}
|
|
27149
|
+
static types() {
|
|
27150
|
+
return {
|
|
27151
|
+
memberId: 'string',
|
|
27152
|
+
memberName: 'string',
|
|
27153
|
+
memberType: 'string',
|
|
27154
|
+
};
|
|
27155
|
+
}
|
|
27156
|
+
}
|
|
27157
|
+
exports.UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers = UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers;
|
|
27158
|
+
class UpdateMeetingRoomRequestReservationAuthority extends $tea.Model {
|
|
27159
|
+
constructor(map) {
|
|
27160
|
+
super(map);
|
|
27161
|
+
}
|
|
27162
|
+
static names() {
|
|
27163
|
+
return {
|
|
27164
|
+
authorizedMembers: 'AuthorizedMembers',
|
|
27165
|
+
};
|
|
27166
|
+
}
|
|
27167
|
+
static types() {
|
|
27168
|
+
return {
|
|
27169
|
+
authorizedMembers: { 'type': 'array', 'itemType': UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers },
|
|
27170
|
+
};
|
|
27171
|
+
}
|
|
27172
|
+
}
|
|
27173
|
+
exports.UpdateMeetingRoomRequestReservationAuthority = UpdateMeetingRoomRequestReservationAuthority;
|
|
27032
27174
|
class UpdateMeetingRoomRequestRoomLocation extends $tea.Model {
|
|
27033
27175
|
constructor(map) {
|
|
27034
27176
|
super(map);
|
|
@@ -28609,6 +28751,9 @@ class Client extends openapi_client_1.default {
|
|
|
28609
28751
|
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
28610
28752
|
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
28611
28753
|
}
|
|
28754
|
+
if (!tea_util_1.default.isUnset(tmpReq.reservationAuthority)) {
|
|
28755
|
+
request.reservationAuthorityShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.reservationAuthority, "ReservationAuthority", "json");
|
|
28756
|
+
}
|
|
28612
28757
|
if (!tea_util_1.default.isUnset(tmpReq.roomLabelIds)) {
|
|
28613
28758
|
request.roomLabelIdsShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.roomLabelIds, "RoomLabelIds", "json");
|
|
28614
28759
|
}
|
|
@@ -28619,12 +28764,18 @@ class Client extends openapi_client_1.default {
|
|
|
28619
28764
|
request.tenantContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
28620
28765
|
}
|
|
28621
28766
|
let body = {};
|
|
28767
|
+
if (!tea_util_1.default.isUnset(request.enableCycleReservation)) {
|
|
28768
|
+
body["EnableCycleReservation"] = request.enableCycleReservation;
|
|
28769
|
+
}
|
|
28622
28770
|
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
28623
28771
|
body["GroupId"] = request.groupId;
|
|
28624
28772
|
}
|
|
28625
28773
|
if (!tea_util_1.default.isUnset(request.isvRoomId)) {
|
|
28626
28774
|
body["IsvRoomId"] = request.isvRoomId;
|
|
28627
28775
|
}
|
|
28776
|
+
if (!tea_util_1.default.isUnset(request.reservationAuthorityShrink)) {
|
|
28777
|
+
body["ReservationAuthority"] = request.reservationAuthorityShrink;
|
|
28778
|
+
}
|
|
28628
28779
|
if (!tea_util_1.default.isUnset(request.roomCapacity)) {
|
|
28629
28780
|
body["RoomCapacity"] = request.roomCapacity;
|
|
28630
28781
|
}
|
|
@@ -35218,6 +35369,9 @@ class Client extends openapi_client_1.default {
|
|
|
35218
35369
|
if (!tea_util_1.default.isUnset(tmpHeader.accountContext)) {
|
|
35219
35370
|
headers.accountContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
35220
35371
|
}
|
|
35372
|
+
if (!tea_util_1.default.isUnset(tmpReq.reservationAuthority)) {
|
|
35373
|
+
request.reservationAuthorityShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.reservationAuthority, "ReservationAuthority", "json");
|
|
35374
|
+
}
|
|
35221
35375
|
if (!tea_util_1.default.isUnset(tmpReq.roomLabelIds)) {
|
|
35222
35376
|
request.roomLabelIdsShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.roomLabelIds, "RoomLabelIds", "json");
|
|
35223
35377
|
}
|
|
@@ -35228,12 +35382,18 @@ class Client extends openapi_client_1.default {
|
|
|
35228
35382
|
request.tenantContextShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
35229
35383
|
}
|
|
35230
35384
|
let body = {};
|
|
35385
|
+
if (!tea_util_1.default.isUnset(request.enableCycleReservation)) {
|
|
35386
|
+
body["EnableCycleReservation"] = request.enableCycleReservation;
|
|
35387
|
+
}
|
|
35231
35388
|
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
35232
35389
|
body["GroupId"] = request.groupId;
|
|
35233
35390
|
}
|
|
35234
35391
|
if (!tea_util_1.default.isUnset(request.isvRoomId)) {
|
|
35235
35392
|
body["IsvRoomId"] = request.isvRoomId;
|
|
35236
35393
|
}
|
|
35394
|
+
if (!tea_util_1.default.isUnset(request.reservationAuthorityShrink)) {
|
|
35395
|
+
body["ReservationAuthority"] = request.reservationAuthorityShrink;
|
|
35396
|
+
}
|
|
35237
35397
|
if (!tea_util_1.default.isUnset(request.roomCapacity)) {
|
|
35238
35398
|
body["RoomCapacity"] = request.roomCapacity;
|
|
35239
35399
|
}
|