@alicloud/aliding20230426 2.3.2 → 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/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -2911,8 +2911,10 @@ export class CreateMeetingRoomShrinkHeaders extends $tea.Model {
|
|
|
2911
2911
|
}
|
|
2912
2912
|
|
|
2913
2913
|
export class CreateMeetingRoomRequest extends $tea.Model {
|
|
2914
|
+
enableCycleReservation?: boolean;
|
|
2914
2915
|
groupId?: number;
|
|
2915
2916
|
isvRoomId?: string;
|
|
2917
|
+
reservationAuthority?: CreateMeetingRoomRequestReservationAuthority;
|
|
2916
2918
|
roomCapacity?: number;
|
|
2917
2919
|
roomLabelIds?: number[];
|
|
2918
2920
|
roomLocation?: CreateMeetingRoomRequestRoomLocation;
|
|
@@ -2922,8 +2924,10 @@ export class CreateMeetingRoomRequest extends $tea.Model {
|
|
|
2922
2924
|
tenantContext?: CreateMeetingRoomRequestTenantContext;
|
|
2923
2925
|
static names(): { [key: string]: string } {
|
|
2924
2926
|
return {
|
|
2927
|
+
enableCycleReservation: 'EnableCycleReservation',
|
|
2925
2928
|
groupId: 'GroupId',
|
|
2926
2929
|
isvRoomId: 'IsvRoomId',
|
|
2930
|
+
reservationAuthority: 'ReservationAuthority',
|
|
2927
2931
|
roomCapacity: 'RoomCapacity',
|
|
2928
2932
|
roomLabelIds: 'RoomLabelIds',
|
|
2929
2933
|
roomLocation: 'RoomLocation',
|
|
@@ -2936,8 +2940,10 @@ export class CreateMeetingRoomRequest extends $tea.Model {
|
|
|
2936
2940
|
|
|
2937
2941
|
static types(): { [key: string]: any } {
|
|
2938
2942
|
return {
|
|
2943
|
+
enableCycleReservation: 'boolean',
|
|
2939
2944
|
groupId: 'number',
|
|
2940
2945
|
isvRoomId: 'string',
|
|
2946
|
+
reservationAuthority: CreateMeetingRoomRequestReservationAuthority,
|
|
2941
2947
|
roomCapacity: 'number',
|
|
2942
2948
|
roomLabelIds: { 'type': 'array', 'itemType': 'number' },
|
|
2943
2949
|
roomLocation: CreateMeetingRoomRequestRoomLocation,
|
|
@@ -2954,8 +2960,10 @@ export class CreateMeetingRoomRequest extends $tea.Model {
|
|
|
2954
2960
|
}
|
|
2955
2961
|
|
|
2956
2962
|
export class CreateMeetingRoomShrinkRequest extends $tea.Model {
|
|
2963
|
+
enableCycleReservation?: boolean;
|
|
2957
2964
|
groupId?: number;
|
|
2958
2965
|
isvRoomId?: string;
|
|
2966
|
+
reservationAuthorityShrink?: string;
|
|
2959
2967
|
roomCapacity?: number;
|
|
2960
2968
|
roomLabelIdsShrink?: string;
|
|
2961
2969
|
roomLocationShrink?: string;
|
|
@@ -2965,8 +2973,10 @@ export class CreateMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
2965
2973
|
tenantContextShrink?: string;
|
|
2966
2974
|
static names(): { [key: string]: string } {
|
|
2967
2975
|
return {
|
|
2976
|
+
enableCycleReservation: 'EnableCycleReservation',
|
|
2968
2977
|
groupId: 'GroupId',
|
|
2969
2978
|
isvRoomId: 'IsvRoomId',
|
|
2979
|
+
reservationAuthorityShrink: 'ReservationAuthority',
|
|
2970
2980
|
roomCapacity: 'RoomCapacity',
|
|
2971
2981
|
roomLabelIdsShrink: 'RoomLabelIds',
|
|
2972
2982
|
roomLocationShrink: 'RoomLocation',
|
|
@@ -2979,8 +2989,10 @@ export class CreateMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
2979
2989
|
|
|
2980
2990
|
static types(): { [key: string]: any } {
|
|
2981
2991
|
return {
|
|
2992
|
+
enableCycleReservation: 'boolean',
|
|
2982
2993
|
groupId: 'number',
|
|
2983
2994
|
isvRoomId: 'string',
|
|
2995
|
+
reservationAuthorityShrink: 'string',
|
|
2984
2996
|
roomCapacity: 'number',
|
|
2985
2997
|
roomLabelIdsShrink: 'string',
|
|
2986
2998
|
roomLocationShrink: 'string',
|
|
@@ -2999,10 +3011,14 @@ export class CreateMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
2999
3011
|
export class CreateMeetingRoomResponseBody extends $tea.Model {
|
|
3000
3012
|
requestId?: string;
|
|
3001
3013
|
result?: string;
|
|
3014
|
+
vendorRequestId?: string;
|
|
3015
|
+
vendorType?: string;
|
|
3002
3016
|
static names(): { [key: string]: string } {
|
|
3003
3017
|
return {
|
|
3004
3018
|
requestId: 'requestId',
|
|
3005
3019
|
result: 'result',
|
|
3020
|
+
vendorRequestId: 'vendorRequestId',
|
|
3021
|
+
vendorType: 'vendorType',
|
|
3006
3022
|
};
|
|
3007
3023
|
}
|
|
3008
3024
|
|
|
@@ -3010,6 +3026,8 @@ export class CreateMeetingRoomResponseBody extends $tea.Model {
|
|
|
3010
3026
|
return {
|
|
3011
3027
|
requestId: 'string',
|
|
3012
3028
|
result: 'string',
|
|
3029
|
+
vendorRequestId: 'string',
|
|
3030
|
+
vendorType: 'string',
|
|
3013
3031
|
};
|
|
3014
3032
|
}
|
|
3015
3033
|
|
|
@@ -15216,10 +15234,14 @@ export class QueryMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
15216
15234
|
export class QueryMeetingRoomResponseBody extends $tea.Model {
|
|
15217
15235
|
requestId?: string;
|
|
15218
15236
|
result?: QueryMeetingRoomResponseBodyResult;
|
|
15237
|
+
vendorRequestId?: string;
|
|
15238
|
+
vendorType?: string;
|
|
15219
15239
|
static names(): { [key: string]: string } {
|
|
15220
15240
|
return {
|
|
15221
15241
|
requestId: 'requestId',
|
|
15222
15242
|
result: 'result',
|
|
15243
|
+
vendorRequestId: 'vendorRequestId',
|
|
15244
|
+
vendorType: 'vendorType',
|
|
15223
15245
|
};
|
|
15224
15246
|
}
|
|
15225
15247
|
|
|
@@ -15227,6 +15249,8 @@ export class QueryMeetingRoomResponseBody extends $tea.Model {
|
|
|
15227
15249
|
return {
|
|
15228
15250
|
requestId: 'string',
|
|
15229
15251
|
result: QueryMeetingRoomResponseBodyResult,
|
|
15252
|
+
vendorRequestId: 'string',
|
|
15253
|
+
vendorType: 'string',
|
|
15230
15254
|
};
|
|
15231
15255
|
}
|
|
15232
15256
|
|
|
@@ -20417,8 +20441,10 @@ export class UpdateMeetingRoomShrinkHeaders extends $tea.Model {
|
|
|
20417
20441
|
}
|
|
20418
20442
|
|
|
20419
20443
|
export class UpdateMeetingRoomRequest extends $tea.Model {
|
|
20444
|
+
enableCycleReservation?: boolean;
|
|
20420
20445
|
groupId?: number;
|
|
20421
20446
|
isvRoomId?: string;
|
|
20447
|
+
reservationAuthority?: UpdateMeetingRoomRequestReservationAuthority;
|
|
20422
20448
|
roomCapacity?: number;
|
|
20423
20449
|
roomId?: string;
|
|
20424
20450
|
roomLabelIds?: number[];
|
|
@@ -20429,8 +20455,10 @@ export class UpdateMeetingRoomRequest extends $tea.Model {
|
|
|
20429
20455
|
tenantContext?: UpdateMeetingRoomRequestTenantContext;
|
|
20430
20456
|
static names(): { [key: string]: string } {
|
|
20431
20457
|
return {
|
|
20458
|
+
enableCycleReservation: 'EnableCycleReservation',
|
|
20432
20459
|
groupId: 'GroupId',
|
|
20433
20460
|
isvRoomId: 'IsvRoomId',
|
|
20461
|
+
reservationAuthority: 'ReservationAuthority',
|
|
20434
20462
|
roomCapacity: 'RoomCapacity',
|
|
20435
20463
|
roomId: 'RoomId',
|
|
20436
20464
|
roomLabelIds: 'RoomLabelIds',
|
|
@@ -20444,8 +20472,10 @@ export class UpdateMeetingRoomRequest extends $tea.Model {
|
|
|
20444
20472
|
|
|
20445
20473
|
static types(): { [key: string]: any } {
|
|
20446
20474
|
return {
|
|
20475
|
+
enableCycleReservation: 'boolean',
|
|
20447
20476
|
groupId: 'number',
|
|
20448
20477
|
isvRoomId: 'string',
|
|
20478
|
+
reservationAuthority: UpdateMeetingRoomRequestReservationAuthority,
|
|
20449
20479
|
roomCapacity: 'number',
|
|
20450
20480
|
roomId: 'string',
|
|
20451
20481
|
roomLabelIds: { 'type': 'array', 'itemType': 'number' },
|
|
@@ -20463,8 +20493,10 @@ export class UpdateMeetingRoomRequest extends $tea.Model {
|
|
|
20463
20493
|
}
|
|
20464
20494
|
|
|
20465
20495
|
export class UpdateMeetingRoomShrinkRequest extends $tea.Model {
|
|
20496
|
+
enableCycleReservation?: boolean;
|
|
20466
20497
|
groupId?: number;
|
|
20467
20498
|
isvRoomId?: string;
|
|
20499
|
+
reservationAuthorityShrink?: string;
|
|
20468
20500
|
roomCapacity?: number;
|
|
20469
20501
|
roomId?: string;
|
|
20470
20502
|
roomLabelIdsShrink?: string;
|
|
@@ -20475,8 +20507,10 @@ export class UpdateMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
20475
20507
|
tenantContextShrink?: string;
|
|
20476
20508
|
static names(): { [key: string]: string } {
|
|
20477
20509
|
return {
|
|
20510
|
+
enableCycleReservation: 'EnableCycleReservation',
|
|
20478
20511
|
groupId: 'GroupId',
|
|
20479
20512
|
isvRoomId: 'IsvRoomId',
|
|
20513
|
+
reservationAuthorityShrink: 'ReservationAuthority',
|
|
20480
20514
|
roomCapacity: 'RoomCapacity',
|
|
20481
20515
|
roomId: 'RoomId',
|
|
20482
20516
|
roomLabelIdsShrink: 'RoomLabelIds',
|
|
@@ -20490,8 +20524,10 @@ export class UpdateMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
20490
20524
|
|
|
20491
20525
|
static types(): { [key: string]: any } {
|
|
20492
20526
|
return {
|
|
20527
|
+
enableCycleReservation: 'boolean',
|
|
20493
20528
|
groupId: 'number',
|
|
20494
20529
|
isvRoomId: 'string',
|
|
20530
|
+
reservationAuthorityShrink: 'string',
|
|
20495
20531
|
roomCapacity: 'number',
|
|
20496
20532
|
roomId: 'string',
|
|
20497
20533
|
roomLabelIdsShrink: 'string',
|
|
@@ -20511,10 +20547,14 @@ export class UpdateMeetingRoomShrinkRequest extends $tea.Model {
|
|
|
20511
20547
|
export class UpdateMeetingRoomResponseBody extends $tea.Model {
|
|
20512
20548
|
result?: boolean;
|
|
20513
20549
|
requestId?: string;
|
|
20550
|
+
vendorRequestId?: string;
|
|
20551
|
+
vendorType?: string;
|
|
20514
20552
|
static names(): { [key: string]: string } {
|
|
20515
20553
|
return {
|
|
20516
20554
|
result: 'Result',
|
|
20517
20555
|
requestId: 'requestId',
|
|
20556
|
+
vendorRequestId: 'vendorRequestId',
|
|
20557
|
+
vendorType: 'vendorType',
|
|
20518
20558
|
};
|
|
20519
20559
|
}
|
|
20520
20560
|
|
|
@@ -20522,6 +20562,8 @@ export class UpdateMeetingRoomResponseBody extends $tea.Model {
|
|
|
20522
20562
|
return {
|
|
20523
20563
|
result: 'boolean',
|
|
20524
20564
|
requestId: 'string',
|
|
20565
|
+
vendorRequestId: 'string',
|
|
20566
|
+
vendorType: 'string',
|
|
20525
20567
|
};
|
|
20526
20568
|
}
|
|
20527
20569
|
|
|
@@ -23803,6 +23845,50 @@ export class CreateMeetingRoomHeadersAccountContext extends $tea.Model {
|
|
|
23803
23845
|
}
|
|
23804
23846
|
}
|
|
23805
23847
|
|
|
23848
|
+
export class CreateMeetingRoomRequestReservationAuthorityAuthorizedMembers extends $tea.Model {
|
|
23849
|
+
memberId?: string;
|
|
23850
|
+
memberName?: string;
|
|
23851
|
+
memberType?: string;
|
|
23852
|
+
static names(): { [key: string]: string } {
|
|
23853
|
+
return {
|
|
23854
|
+
memberId: 'MemberId',
|
|
23855
|
+
memberName: 'MemberName',
|
|
23856
|
+
memberType: 'MemberType',
|
|
23857
|
+
};
|
|
23858
|
+
}
|
|
23859
|
+
|
|
23860
|
+
static types(): { [key: string]: any } {
|
|
23861
|
+
return {
|
|
23862
|
+
memberId: 'string',
|
|
23863
|
+
memberName: 'string',
|
|
23864
|
+
memberType: 'string',
|
|
23865
|
+
};
|
|
23866
|
+
}
|
|
23867
|
+
|
|
23868
|
+
constructor(map?: { [key: string]: any }) {
|
|
23869
|
+
super(map);
|
|
23870
|
+
}
|
|
23871
|
+
}
|
|
23872
|
+
|
|
23873
|
+
export class CreateMeetingRoomRequestReservationAuthority extends $tea.Model {
|
|
23874
|
+
authorizedMembers?: CreateMeetingRoomRequestReservationAuthorityAuthorizedMembers[];
|
|
23875
|
+
static names(): { [key: string]: string } {
|
|
23876
|
+
return {
|
|
23877
|
+
authorizedMembers: 'AuthorizedMembers',
|
|
23878
|
+
};
|
|
23879
|
+
}
|
|
23880
|
+
|
|
23881
|
+
static types(): { [key: string]: any } {
|
|
23882
|
+
return {
|
|
23883
|
+
authorizedMembers: { 'type': 'array', 'itemType': CreateMeetingRoomRequestReservationAuthorityAuthorizedMembers },
|
|
23884
|
+
};
|
|
23885
|
+
}
|
|
23886
|
+
|
|
23887
|
+
constructor(map?: { [key: string]: any }) {
|
|
23888
|
+
super(map);
|
|
23889
|
+
}
|
|
23890
|
+
}
|
|
23891
|
+
|
|
23806
23892
|
export class CreateMeetingRoomRequestRoomLocation extends $tea.Model {
|
|
23807
23893
|
desc?: string;
|
|
23808
23894
|
title?: string;
|
|
@@ -31823,6 +31909,50 @@ export class QueryMeetingRoomRequestTenantContext extends $tea.Model {
|
|
|
31823
31909
|
}
|
|
31824
31910
|
}
|
|
31825
31911
|
|
|
31912
|
+
export class QueryMeetingRoomResponseBodyResultReservationAuthorityAuthorizedMembers extends $tea.Model {
|
|
31913
|
+
memberId?: string;
|
|
31914
|
+
memberName?: string;
|
|
31915
|
+
memberType?: string;
|
|
31916
|
+
static names(): { [key: string]: string } {
|
|
31917
|
+
return {
|
|
31918
|
+
memberId: 'MemberId',
|
|
31919
|
+
memberName: 'MemberName',
|
|
31920
|
+
memberType: 'MemberType',
|
|
31921
|
+
};
|
|
31922
|
+
}
|
|
31923
|
+
|
|
31924
|
+
static types(): { [key: string]: any } {
|
|
31925
|
+
return {
|
|
31926
|
+
memberId: 'string',
|
|
31927
|
+
memberName: 'string',
|
|
31928
|
+
memberType: 'string',
|
|
31929
|
+
};
|
|
31930
|
+
}
|
|
31931
|
+
|
|
31932
|
+
constructor(map?: { [key: string]: any }) {
|
|
31933
|
+
super(map);
|
|
31934
|
+
}
|
|
31935
|
+
}
|
|
31936
|
+
|
|
31937
|
+
export class QueryMeetingRoomResponseBodyResultReservationAuthority extends $tea.Model {
|
|
31938
|
+
authorizedMembers?: QueryMeetingRoomResponseBodyResultReservationAuthorityAuthorizedMembers[];
|
|
31939
|
+
static names(): { [key: string]: string } {
|
|
31940
|
+
return {
|
|
31941
|
+
authorizedMembers: 'AuthorizedMembers',
|
|
31942
|
+
};
|
|
31943
|
+
}
|
|
31944
|
+
|
|
31945
|
+
static types(): { [key: string]: any } {
|
|
31946
|
+
return {
|
|
31947
|
+
authorizedMembers: { 'type': 'array', 'itemType': QueryMeetingRoomResponseBodyResultReservationAuthorityAuthorizedMembers },
|
|
31948
|
+
};
|
|
31949
|
+
}
|
|
31950
|
+
|
|
31951
|
+
constructor(map?: { [key: string]: any }) {
|
|
31952
|
+
super(map);
|
|
31953
|
+
}
|
|
31954
|
+
}
|
|
31955
|
+
|
|
31826
31956
|
export class QueryMeetingRoomResponseBodyResultRoomGroup extends $tea.Model {
|
|
31827
31957
|
groupId?: number;
|
|
31828
31958
|
groupName?: string;
|
|
@@ -31894,7 +32024,10 @@ export class QueryMeetingRoomResponseBodyResultRoomLocation extends $tea.Model {
|
|
|
31894
32024
|
|
|
31895
32025
|
export class QueryMeetingRoomResponseBodyResult extends $tea.Model {
|
|
31896
32026
|
corpId?: string;
|
|
32027
|
+
deviceUnionIds?: string[];
|
|
32028
|
+
enableCycleReservation?: boolean;
|
|
31897
32029
|
isvRoomId?: string;
|
|
32030
|
+
reservationAuthority?: QueryMeetingRoomResponseBodyResultReservationAuthority;
|
|
31898
32031
|
roomCapacity?: number;
|
|
31899
32032
|
roomGroup?: QueryMeetingRoomResponseBodyResultRoomGroup;
|
|
31900
32033
|
roomId?: string;
|
|
@@ -31907,7 +32040,10 @@ export class QueryMeetingRoomResponseBodyResult extends $tea.Model {
|
|
|
31907
32040
|
static names(): { [key: string]: string } {
|
|
31908
32041
|
return {
|
|
31909
32042
|
corpId: 'CorpId',
|
|
32043
|
+
deviceUnionIds: 'DeviceUnionIds',
|
|
32044
|
+
enableCycleReservation: 'EnableCycleReservation',
|
|
31910
32045
|
isvRoomId: 'IsvRoomId',
|
|
32046
|
+
reservationAuthority: 'ReservationAuthority',
|
|
31911
32047
|
roomCapacity: 'RoomCapacity',
|
|
31912
32048
|
roomGroup: 'RoomGroup',
|
|
31913
32049
|
roomId: 'RoomId',
|
|
@@ -31923,7 +32059,10 @@ export class QueryMeetingRoomResponseBodyResult extends $tea.Model {
|
|
|
31923
32059
|
static types(): { [key: string]: any } {
|
|
31924
32060
|
return {
|
|
31925
32061
|
corpId: 'string',
|
|
32062
|
+
deviceUnionIds: { 'type': 'array', 'itemType': 'string' },
|
|
32063
|
+
enableCycleReservation: 'boolean',
|
|
31926
32064
|
isvRoomId: 'string',
|
|
32065
|
+
reservationAuthority: QueryMeetingRoomResponseBodyResultReservationAuthority,
|
|
31927
32066
|
roomCapacity: 'number',
|
|
31928
32067
|
roomGroup: QueryMeetingRoomResponseBodyResultRoomGroup,
|
|
31929
32068
|
roomId: 'string',
|
|
@@ -33903,6 +34042,50 @@ export class UpdateMeetingRoomHeadersAccountContext extends $tea.Model {
|
|
|
33903
34042
|
}
|
|
33904
34043
|
}
|
|
33905
34044
|
|
|
34045
|
+
export class UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers extends $tea.Model {
|
|
34046
|
+
memberId?: string;
|
|
34047
|
+
memberName?: string;
|
|
34048
|
+
memberType?: string;
|
|
34049
|
+
static names(): { [key: string]: string } {
|
|
34050
|
+
return {
|
|
34051
|
+
memberId: 'MemberId',
|
|
34052
|
+
memberName: 'MemberName',
|
|
34053
|
+
memberType: 'MemberType',
|
|
34054
|
+
};
|
|
34055
|
+
}
|
|
34056
|
+
|
|
34057
|
+
static types(): { [key: string]: any } {
|
|
34058
|
+
return {
|
|
34059
|
+
memberId: 'string',
|
|
34060
|
+
memberName: 'string',
|
|
34061
|
+
memberType: 'string',
|
|
34062
|
+
};
|
|
34063
|
+
}
|
|
34064
|
+
|
|
34065
|
+
constructor(map?: { [key: string]: any }) {
|
|
34066
|
+
super(map);
|
|
34067
|
+
}
|
|
34068
|
+
}
|
|
34069
|
+
|
|
34070
|
+
export class UpdateMeetingRoomRequestReservationAuthority extends $tea.Model {
|
|
34071
|
+
authorizedMembers?: UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers[];
|
|
34072
|
+
static names(): { [key: string]: string } {
|
|
34073
|
+
return {
|
|
34074
|
+
authorizedMembers: 'AuthorizedMembers',
|
|
34075
|
+
};
|
|
34076
|
+
}
|
|
34077
|
+
|
|
34078
|
+
static types(): { [key: string]: any } {
|
|
34079
|
+
return {
|
|
34080
|
+
authorizedMembers: { 'type': 'array', 'itemType': UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers },
|
|
34081
|
+
};
|
|
34082
|
+
}
|
|
34083
|
+
|
|
34084
|
+
constructor(map?: { [key: string]: any }) {
|
|
34085
|
+
super(map);
|
|
34086
|
+
}
|
|
34087
|
+
}
|
|
34088
|
+
|
|
33906
34089
|
export class UpdateMeetingRoomRequestRoomLocation extends $tea.Model {
|
|
33907
34090
|
desc?: string;
|
|
33908
34091
|
title?: string;
|
|
@@ -35801,6 +35984,10 @@ export default class Client extends OpenApi {
|
|
|
35801
35984
|
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
35802
35985
|
}
|
|
35803
35986
|
|
|
35987
|
+
if (!Util.isUnset(tmpReq.reservationAuthority)) {
|
|
35988
|
+
request.reservationAuthorityShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.reservationAuthority, "ReservationAuthority", "json");
|
|
35989
|
+
}
|
|
35990
|
+
|
|
35804
35991
|
if (!Util.isUnset(tmpReq.roomLabelIds)) {
|
|
35805
35992
|
request.roomLabelIdsShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.roomLabelIds, "RoomLabelIds", "json");
|
|
35806
35993
|
}
|
|
@@ -35814,6 +36001,10 @@ export default class Client extends OpenApi {
|
|
|
35814
36001
|
}
|
|
35815
36002
|
|
|
35816
36003
|
let body : {[key: string ]: any} = { };
|
|
36004
|
+
if (!Util.isUnset(request.enableCycleReservation)) {
|
|
36005
|
+
body["EnableCycleReservation"] = request.enableCycleReservation;
|
|
36006
|
+
}
|
|
36007
|
+
|
|
35817
36008
|
if (!Util.isUnset(request.groupId)) {
|
|
35818
36009
|
body["GroupId"] = request.groupId;
|
|
35819
36010
|
}
|
|
@@ -35822,6 +36013,10 @@ export default class Client extends OpenApi {
|
|
|
35822
36013
|
body["IsvRoomId"] = request.isvRoomId;
|
|
35823
36014
|
}
|
|
35824
36015
|
|
|
36016
|
+
if (!Util.isUnset(request.reservationAuthorityShrink)) {
|
|
36017
|
+
body["ReservationAuthority"] = request.reservationAuthorityShrink;
|
|
36018
|
+
}
|
|
36019
|
+
|
|
35825
36020
|
if (!Util.isUnset(request.roomCapacity)) {
|
|
35826
36021
|
body["RoomCapacity"] = request.roomCapacity;
|
|
35827
36022
|
}
|
|
@@ -43695,6 +43890,10 @@ export default class Client extends OpenApi {
|
|
|
43695
43890
|
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
43696
43891
|
}
|
|
43697
43892
|
|
|
43893
|
+
if (!Util.isUnset(tmpReq.reservationAuthority)) {
|
|
43894
|
+
request.reservationAuthorityShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.reservationAuthority, "ReservationAuthority", "json");
|
|
43895
|
+
}
|
|
43896
|
+
|
|
43698
43897
|
if (!Util.isUnset(tmpReq.roomLabelIds)) {
|
|
43699
43898
|
request.roomLabelIdsShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.roomLabelIds, "RoomLabelIds", "json");
|
|
43700
43899
|
}
|
|
@@ -43708,6 +43907,10 @@ export default class Client extends OpenApi {
|
|
|
43708
43907
|
}
|
|
43709
43908
|
|
|
43710
43909
|
let body : {[key: string ]: any} = { };
|
|
43910
|
+
if (!Util.isUnset(request.enableCycleReservation)) {
|
|
43911
|
+
body["EnableCycleReservation"] = request.enableCycleReservation;
|
|
43912
|
+
}
|
|
43913
|
+
|
|
43711
43914
|
if (!Util.isUnset(request.groupId)) {
|
|
43712
43915
|
body["GroupId"] = request.groupId;
|
|
43713
43916
|
}
|
|
@@ -43716,6 +43919,10 @@ export default class Client extends OpenApi {
|
|
|
43716
43919
|
body["IsvRoomId"] = request.isvRoomId;
|
|
43717
43920
|
}
|
|
43718
43921
|
|
|
43922
|
+
if (!Util.isUnset(request.reservationAuthorityShrink)) {
|
|
43923
|
+
body["ReservationAuthority"] = request.reservationAuthorityShrink;
|
|
43924
|
+
}
|
|
43925
|
+
|
|
43719
43926
|
if (!Util.isUnset(request.roomCapacity)) {
|
|
43720
43927
|
body["RoomCapacity"] = request.roomCapacity;
|
|
43721
43928
|
}
|