@alicloud/aliding20230426 2.5.0 → 2.6.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 +952 -480
- package/dist/client.js +860 -11
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +1524 -480
package/src/client.ts
CHANGED
|
@@ -152,9 +152,9 @@ export class AddAttendeeResponseBody extends $tea.Model {
|
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
export class AddAttendeeResponse extends $tea.Model {
|
|
155
|
-
headers
|
|
156
|
-
statusCode
|
|
157
|
-
body
|
|
155
|
+
headers?: { [key: string]: string };
|
|
156
|
+
statusCode?: number;
|
|
157
|
+
body?: AddAttendeeResponseBody;
|
|
158
158
|
static names(): { [key: string]: string } {
|
|
159
159
|
return {
|
|
160
160
|
headers: 'headers',
|
|
@@ -293,9 +293,9 @@ export class AddMeetingRoomsResponseBody extends $tea.Model {
|
|
|
293
293
|
}
|
|
294
294
|
|
|
295
295
|
export class AddMeetingRoomsResponse extends $tea.Model {
|
|
296
|
-
headers
|
|
297
|
-
statusCode
|
|
298
|
-
body
|
|
296
|
+
headers?: { [key: string]: string };
|
|
297
|
+
statusCode?: number;
|
|
298
|
+
body?: AddMeetingRoomsResponseBody;
|
|
299
299
|
static names(): { [key: string]: string } {
|
|
300
300
|
return {
|
|
301
301
|
headers: 'headers',
|
|
@@ -406,9 +406,9 @@ export class AddScenegroupMemberResponseBody extends $tea.Model {
|
|
|
406
406
|
}
|
|
407
407
|
|
|
408
408
|
export class AddScenegroupMemberResponse extends $tea.Model {
|
|
409
|
-
headers
|
|
410
|
-
statusCode
|
|
411
|
-
body
|
|
409
|
+
headers?: { [key: string]: string };
|
|
410
|
+
statusCode?: number;
|
|
411
|
+
body?: AddScenegroupMemberResponseBody;
|
|
412
412
|
static names(): { [key: string]: string } {
|
|
413
413
|
return {
|
|
414
414
|
headers: 'headers',
|
|
@@ -547,9 +547,9 @@ export class AddWorkspaceResponseBody extends $tea.Model {
|
|
|
547
547
|
}
|
|
548
548
|
|
|
549
549
|
export class AddWorkspaceResponse extends $tea.Model {
|
|
550
|
-
headers
|
|
551
|
-
statusCode
|
|
552
|
-
body
|
|
550
|
+
headers?: { [key: string]: string };
|
|
551
|
+
statusCode?: number;
|
|
552
|
+
body?: AddWorkspaceResponseBody;
|
|
553
553
|
static names(): { [key: string]: string } {
|
|
554
554
|
return {
|
|
555
555
|
headers: 'headers',
|
|
@@ -691,9 +691,9 @@ export class AddWorkspaceDocMembersResponseBody extends $tea.Model {
|
|
|
691
691
|
}
|
|
692
692
|
|
|
693
693
|
export class AddWorkspaceDocMembersResponse extends $tea.Model {
|
|
694
|
-
headers
|
|
695
|
-
statusCode
|
|
696
|
-
body
|
|
694
|
+
headers?: { [key: string]: string };
|
|
695
|
+
statusCode?: number;
|
|
696
|
+
body?: AddWorkspaceDocMembersResponseBody;
|
|
697
697
|
static names(): { [key: string]: string } {
|
|
698
698
|
return {
|
|
699
699
|
headers: 'headers',
|
|
@@ -832,9 +832,9 @@ export class AddWorkspaceMembersResponseBody extends $tea.Model {
|
|
|
832
832
|
}
|
|
833
833
|
|
|
834
834
|
export class AddWorkspaceMembersResponse extends $tea.Model {
|
|
835
|
-
headers
|
|
836
|
-
statusCode
|
|
837
|
-
body
|
|
835
|
+
headers?: { [key: string]: string };
|
|
836
|
+
statusCode?: number;
|
|
837
|
+
body?: AddWorkspaceMembersResponseBody;
|
|
838
838
|
static names(): { [key: string]: string } {
|
|
839
839
|
return {
|
|
840
840
|
headers: 'headers',
|
|
@@ -991,9 +991,9 @@ export class BatchGetFormDataByIdListResponseBody extends $tea.Model {
|
|
|
991
991
|
}
|
|
992
992
|
|
|
993
993
|
export class BatchGetFormDataByIdListResponse extends $tea.Model {
|
|
994
|
-
headers
|
|
995
|
-
statusCode
|
|
996
|
-
body
|
|
994
|
+
headers?: { [key: string]: string };
|
|
995
|
+
statusCode?: number;
|
|
996
|
+
body?: BatchGetFormDataByIdListResponseBody;
|
|
997
997
|
static names(): { [key: string]: string } {
|
|
998
998
|
return {
|
|
999
999
|
headers: 'headers',
|
|
@@ -1153,9 +1153,9 @@ export class BatchRemovalByFormInstanceIdListResponseBody extends $tea.Model {
|
|
|
1153
1153
|
}
|
|
1154
1154
|
|
|
1155
1155
|
export class BatchRemovalByFormInstanceIdListResponse extends $tea.Model {
|
|
1156
|
-
headers
|
|
1157
|
-
statusCode
|
|
1158
|
-
body
|
|
1156
|
+
headers?: { [key: string]: string };
|
|
1157
|
+
statusCode?: number;
|
|
1158
|
+
body?: BatchRemovalByFormInstanceIdListResponseBody;
|
|
1159
1159
|
static names(): { [key: string]: string } {
|
|
1160
1160
|
return {
|
|
1161
1161
|
headers: 'headers',
|
|
@@ -1324,9 +1324,9 @@ export class BatchSaveFormDataResponseBody extends $tea.Model {
|
|
|
1324
1324
|
}
|
|
1325
1325
|
|
|
1326
1326
|
export class BatchSaveFormDataResponse extends $tea.Model {
|
|
1327
|
-
headers
|
|
1328
|
-
statusCode
|
|
1329
|
-
body
|
|
1327
|
+
headers?: { [key: string]: string };
|
|
1328
|
+
statusCode?: number;
|
|
1329
|
+
body?: BatchSaveFormDataResponseBody;
|
|
1330
1330
|
static names(): { [key: string]: string } {
|
|
1331
1331
|
return {
|
|
1332
1332
|
headers: 'headers',
|
|
@@ -1507,9 +1507,9 @@ export class BatchUpdateFormDataByInstanceIdResponseBody extends $tea.Model {
|
|
|
1507
1507
|
}
|
|
1508
1508
|
|
|
1509
1509
|
export class BatchUpdateFormDataByInstanceIdResponse extends $tea.Model {
|
|
1510
|
-
headers
|
|
1511
|
-
statusCode
|
|
1512
|
-
body
|
|
1510
|
+
headers?: { [key: string]: string };
|
|
1511
|
+
statusCode?: number;
|
|
1512
|
+
body?: BatchUpdateFormDataByInstanceIdResponseBody;
|
|
1513
1513
|
static names(): { [key: string]: string } {
|
|
1514
1514
|
return {
|
|
1515
1515
|
headers: 'headers',
|
|
@@ -1684,9 +1684,9 @@ export class BatchUpdateFormDataByInstanceMapResponseBody extends $tea.Model {
|
|
|
1684
1684
|
}
|
|
1685
1685
|
|
|
1686
1686
|
export class BatchUpdateFormDataByInstanceMapResponse extends $tea.Model {
|
|
1687
|
-
headers
|
|
1688
|
-
statusCode
|
|
1689
|
-
body
|
|
1687
|
+
headers?: { [key: string]: string };
|
|
1688
|
+
statusCode?: number;
|
|
1689
|
+
body?: BatchUpdateFormDataByInstanceMapResponseBody;
|
|
1690
1690
|
static names(): { [key: string]: string } {
|
|
1691
1691
|
return {
|
|
1692
1692
|
headers: 'headers',
|
|
@@ -1819,9 +1819,9 @@ export class CancelScheduleConferenceResponseBody extends $tea.Model {
|
|
|
1819
1819
|
}
|
|
1820
1820
|
|
|
1821
1821
|
export class CancelScheduleConferenceResponse extends $tea.Model {
|
|
1822
|
-
headers
|
|
1823
|
-
statusCode
|
|
1824
|
-
body
|
|
1822
|
+
headers?: { [key: string]: string };
|
|
1823
|
+
statusCode?: number;
|
|
1824
|
+
body?: CancelScheduleConferenceResponseBody;
|
|
1825
1825
|
static names(): { [key: string]: string } {
|
|
1826
1826
|
return {
|
|
1827
1827
|
headers: 'headers',
|
|
@@ -1966,9 +1966,9 @@ export class ClearResponseBody extends $tea.Model {
|
|
|
1966
1966
|
}
|
|
1967
1967
|
|
|
1968
1968
|
export class ClearResponse extends $tea.Model {
|
|
1969
|
-
headers
|
|
1970
|
-
statusCode
|
|
1971
|
-
body
|
|
1969
|
+
headers?: { [key: string]: string };
|
|
1970
|
+
statusCode?: number;
|
|
1971
|
+
body?: ClearResponseBody;
|
|
1972
1972
|
static names(): { [key: string]: string } {
|
|
1973
1973
|
return {
|
|
1974
1974
|
headers: 'headers',
|
|
@@ -2113,9 +2113,9 @@ export class ClearDataResponseBody extends $tea.Model {
|
|
|
2113
2113
|
}
|
|
2114
2114
|
|
|
2115
2115
|
export class ClearDataResponse extends $tea.Model {
|
|
2116
|
-
headers
|
|
2117
|
-
statusCode
|
|
2118
|
-
body
|
|
2116
|
+
headers?: { [key: string]: string };
|
|
2117
|
+
statusCode?: number;
|
|
2118
|
+
body?: ClearDataResponseBody;
|
|
2119
2119
|
static names(): { [key: string]: string } {
|
|
2120
2120
|
return {
|
|
2121
2121
|
headers: 'headers',
|
|
@@ -2266,9 +2266,9 @@ export class CommentListReportResponseBody extends $tea.Model {
|
|
|
2266
2266
|
}
|
|
2267
2267
|
|
|
2268
2268
|
export class CommentListReportResponse extends $tea.Model {
|
|
2269
|
-
headers
|
|
2270
|
-
statusCode
|
|
2271
|
-
body
|
|
2269
|
+
headers?: { [key: string]: string };
|
|
2270
|
+
statusCode?: number;
|
|
2271
|
+
body?: CommentListReportResponseBody;
|
|
2272
2272
|
static names(): { [key: string]: string } {
|
|
2273
2273
|
return {
|
|
2274
2274
|
headers: 'headers',
|
|
@@ -2434,9 +2434,9 @@ export class CreateDeliveryPlanResponseBody extends $tea.Model {
|
|
|
2434
2434
|
}
|
|
2435
2435
|
|
|
2436
2436
|
export class CreateDeliveryPlanResponse extends $tea.Model {
|
|
2437
|
-
headers
|
|
2438
|
-
statusCode
|
|
2439
|
-
body
|
|
2437
|
+
headers?: { [key: string]: string };
|
|
2438
|
+
statusCode?: number;
|
|
2439
|
+
body?: CreateDeliveryPlanResponseBody;
|
|
2440
2440
|
static names(): { [key: string]: string } {
|
|
2441
2441
|
return {
|
|
2442
2442
|
headers: 'headers',
|
|
@@ -2677,9 +2677,9 @@ export class CreateEventResponseBody extends $tea.Model {
|
|
|
2677
2677
|
}
|
|
2678
2678
|
|
|
2679
2679
|
export class CreateEventResponse extends $tea.Model {
|
|
2680
|
-
headers
|
|
2681
|
-
statusCode
|
|
2682
|
-
body
|
|
2680
|
+
headers?: { [key: string]: string };
|
|
2681
|
+
statusCode?: number;
|
|
2682
|
+
body?: CreateEventResponseBody;
|
|
2683
2683
|
static names(): { [key: string]: string } {
|
|
2684
2684
|
return {
|
|
2685
2685
|
headers: 'headers',
|
|
@@ -2842,9 +2842,9 @@ export class CreateLiveResponseBody extends $tea.Model {
|
|
|
2842
2842
|
}
|
|
2843
2843
|
|
|
2844
2844
|
export class CreateLiveResponse extends $tea.Model {
|
|
2845
|
-
headers
|
|
2846
|
-
statusCode
|
|
2847
|
-
body
|
|
2845
|
+
headers?: { [key: string]: string };
|
|
2846
|
+
statusCode?: number;
|
|
2847
|
+
body?: CreateLiveResponseBody;
|
|
2848
2848
|
static names(): { [key: string]: string } {
|
|
2849
2849
|
return {
|
|
2850
2850
|
headers: 'headers',
|
|
@@ -3037,9 +3037,9 @@ export class CreateMeetingRoomResponseBody extends $tea.Model {
|
|
|
3037
3037
|
}
|
|
3038
3038
|
|
|
3039
3039
|
export class CreateMeetingRoomResponse extends $tea.Model {
|
|
3040
|
-
headers
|
|
3041
|
-
statusCode
|
|
3042
|
-
body
|
|
3040
|
+
headers?: { [key: string]: string };
|
|
3041
|
+
statusCode?: number;
|
|
3042
|
+
body?: CreateMeetingRoomResponseBody;
|
|
3043
3043
|
static names(): { [key: string]: string } {
|
|
3044
3044
|
return {
|
|
3045
3045
|
headers: 'headers',
|
|
@@ -3178,9 +3178,9 @@ export class CreateMeetingRoomGroupResponseBody extends $tea.Model {
|
|
|
3178
3178
|
}
|
|
3179
3179
|
|
|
3180
3180
|
export class CreateMeetingRoomGroupResponse extends $tea.Model {
|
|
3181
|
-
headers
|
|
3182
|
-
statusCode
|
|
3183
|
-
body
|
|
3181
|
+
headers?: { [key: string]: string };
|
|
3182
|
+
statusCode?: number;
|
|
3183
|
+
body?: CreateMeetingRoomGroupResponseBody;
|
|
3184
3184
|
static names(): { [key: string]: string } {
|
|
3185
3185
|
return {
|
|
3186
3186
|
headers: 'headers',
|
|
@@ -3312,9 +3312,9 @@ export class CreateOrUpdateFormDataResponseBody extends $tea.Model {
|
|
|
3312
3312
|
}
|
|
3313
3313
|
|
|
3314
3314
|
export class CreateOrUpdateFormDataResponse extends $tea.Model {
|
|
3315
|
-
headers
|
|
3316
|
-
statusCode
|
|
3317
|
-
body
|
|
3315
|
+
headers?: { [key: string]: string };
|
|
3316
|
+
statusCode?: number;
|
|
3317
|
+
body?: CreateOrUpdateFormDataResponseBody;
|
|
3318
3318
|
static names(): { [key: string]: string } {
|
|
3319
3319
|
return {
|
|
3320
3320
|
headers: 'headers',
|
|
@@ -3483,9 +3483,9 @@ export class CreateOrgHonorTemplateResponseBody extends $tea.Model {
|
|
|
3483
3483
|
}
|
|
3484
3484
|
|
|
3485
3485
|
export class CreateOrgHonorTemplateResponse extends $tea.Model {
|
|
3486
|
-
headers
|
|
3487
|
-
statusCode
|
|
3488
|
-
body
|
|
3486
|
+
headers?: { [key: string]: string };
|
|
3487
|
+
statusCode?: number;
|
|
3488
|
+
body?: CreateOrgHonorTemplateResponseBody;
|
|
3489
3489
|
static names(): { [key: string]: string } {
|
|
3490
3490
|
return {
|
|
3491
3491
|
headers: 'headers',
|
|
@@ -3657,9 +3657,9 @@ export class CreatePersonalTodoTaskResponseBody extends $tea.Model {
|
|
|
3657
3657
|
}
|
|
3658
3658
|
|
|
3659
3659
|
export class CreatePersonalTodoTaskResponse extends $tea.Model {
|
|
3660
|
-
headers
|
|
3661
|
-
statusCode
|
|
3662
|
-
body
|
|
3660
|
+
headers?: { [key: string]: string };
|
|
3661
|
+
statusCode?: number;
|
|
3662
|
+
body?: CreatePersonalTodoTaskResponseBody;
|
|
3663
3663
|
static names(): { [key: string]: string } {
|
|
3664
3664
|
return {
|
|
3665
3665
|
headers: 'headers',
|
|
@@ -3822,9 +3822,9 @@ export class CreateReportResponseBody extends $tea.Model {
|
|
|
3822
3822
|
}
|
|
3823
3823
|
|
|
3824
3824
|
export class CreateReportResponse extends $tea.Model {
|
|
3825
|
-
headers
|
|
3826
|
-
statusCode
|
|
3827
|
-
body
|
|
3825
|
+
headers?: { [key: string]: string };
|
|
3826
|
+
statusCode?: number;
|
|
3827
|
+
body?: CreateReportResponseBody;
|
|
3828
3828
|
static names(): { [key: string]: string } {
|
|
3829
3829
|
return {
|
|
3830
3830
|
headers: 'headers',
|
|
@@ -3989,9 +3989,9 @@ export class CreateScenegroupResponseBody extends $tea.Model {
|
|
|
3989
3989
|
}
|
|
3990
3990
|
|
|
3991
3991
|
export class CreateScenegroupResponse extends $tea.Model {
|
|
3992
|
-
headers
|
|
3993
|
-
statusCode
|
|
3994
|
-
body
|
|
3992
|
+
headers?: { [key: string]: string };
|
|
3993
|
+
statusCode?: number;
|
|
3994
|
+
body?: CreateScenegroupResponseBody;
|
|
3995
3995
|
static names(): { [key: string]: string } {
|
|
3996
3996
|
return {
|
|
3997
3997
|
headers: 'headers',
|
|
@@ -4145,9 +4145,9 @@ export class CreateScheduleConferenceResponseBody extends $tea.Model {
|
|
|
4145
4145
|
}
|
|
4146
4146
|
|
|
4147
4147
|
export class CreateScheduleConferenceResponse extends $tea.Model {
|
|
4148
|
-
headers
|
|
4149
|
-
statusCode
|
|
4150
|
-
body
|
|
4148
|
+
headers?: { [key: string]: string };
|
|
4149
|
+
statusCode?: number;
|
|
4150
|
+
body?: CreateScheduleConferenceResponseBody;
|
|
4151
4151
|
static names(): { [key: string]: string } {
|
|
4152
4152
|
return {
|
|
4153
4153
|
headers: 'headers',
|
|
@@ -4169,6 +4169,342 @@ export class CreateScheduleConferenceResponse extends $tea.Model {
|
|
|
4169
4169
|
}
|
|
4170
4170
|
}
|
|
4171
4171
|
|
|
4172
|
+
export class CreateSearchDomeHeaders extends $tea.Model {
|
|
4173
|
+
commonHeaders?: { [key: string]: string };
|
|
4174
|
+
accountContext?: CreateSearchDomeHeadersAccountContext;
|
|
4175
|
+
static names(): { [key: string]: string } {
|
|
4176
|
+
return {
|
|
4177
|
+
commonHeaders: 'commonHeaders',
|
|
4178
|
+
accountContext: 'AccountContext',
|
|
4179
|
+
};
|
|
4180
|
+
}
|
|
4181
|
+
|
|
4182
|
+
static types(): { [key: string]: any } {
|
|
4183
|
+
return {
|
|
4184
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4185
|
+
accountContext: CreateSearchDomeHeadersAccountContext,
|
|
4186
|
+
};
|
|
4187
|
+
}
|
|
4188
|
+
|
|
4189
|
+
constructor(map?: { [key: string]: any }) {
|
|
4190
|
+
super(map);
|
|
4191
|
+
}
|
|
4192
|
+
}
|
|
4193
|
+
|
|
4194
|
+
export class CreateSearchDomeShrinkHeaders extends $tea.Model {
|
|
4195
|
+
commonHeaders?: { [key: string]: string };
|
|
4196
|
+
accountContextShrink?: string;
|
|
4197
|
+
static names(): { [key: string]: string } {
|
|
4198
|
+
return {
|
|
4199
|
+
commonHeaders: 'commonHeaders',
|
|
4200
|
+
accountContextShrink: 'AccountContext',
|
|
4201
|
+
};
|
|
4202
|
+
}
|
|
4203
|
+
|
|
4204
|
+
static types(): { [key: string]: any } {
|
|
4205
|
+
return {
|
|
4206
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4207
|
+
accountContextShrink: 'string',
|
|
4208
|
+
};
|
|
4209
|
+
}
|
|
4210
|
+
|
|
4211
|
+
constructor(map?: { [key: string]: any }) {
|
|
4212
|
+
super(map);
|
|
4213
|
+
}
|
|
4214
|
+
}
|
|
4215
|
+
|
|
4216
|
+
export class CreateSearchDomeRequest extends $tea.Model {
|
|
4217
|
+
content?: string;
|
|
4218
|
+
endTime?: number;
|
|
4219
|
+
resId?: string;
|
|
4220
|
+
startTime?: number;
|
|
4221
|
+
tenantContext?: CreateSearchDomeRequestTenantContext;
|
|
4222
|
+
userIdList?: string[];
|
|
4223
|
+
static names(): { [key: string]: string } {
|
|
4224
|
+
return {
|
|
4225
|
+
content: 'Content',
|
|
4226
|
+
endTime: 'EndTime',
|
|
4227
|
+
resId: 'ResId',
|
|
4228
|
+
startTime: 'StartTime',
|
|
4229
|
+
tenantContext: 'TenantContext',
|
|
4230
|
+
userIdList: 'UserIdList',
|
|
4231
|
+
};
|
|
4232
|
+
}
|
|
4233
|
+
|
|
4234
|
+
static types(): { [key: string]: any } {
|
|
4235
|
+
return {
|
|
4236
|
+
content: 'string',
|
|
4237
|
+
endTime: 'number',
|
|
4238
|
+
resId: 'string',
|
|
4239
|
+
startTime: 'number',
|
|
4240
|
+
tenantContext: CreateSearchDomeRequestTenantContext,
|
|
4241
|
+
userIdList: { 'type': 'array', 'itemType': 'string' },
|
|
4242
|
+
};
|
|
4243
|
+
}
|
|
4244
|
+
|
|
4245
|
+
constructor(map?: { [key: string]: any }) {
|
|
4246
|
+
super(map);
|
|
4247
|
+
}
|
|
4248
|
+
}
|
|
4249
|
+
|
|
4250
|
+
export class CreateSearchDomeShrinkRequest extends $tea.Model {
|
|
4251
|
+
content?: string;
|
|
4252
|
+
endTime?: number;
|
|
4253
|
+
resId?: string;
|
|
4254
|
+
startTime?: number;
|
|
4255
|
+
tenantContextShrink?: string;
|
|
4256
|
+
userIdListShrink?: string;
|
|
4257
|
+
static names(): { [key: string]: string } {
|
|
4258
|
+
return {
|
|
4259
|
+
content: 'Content',
|
|
4260
|
+
endTime: 'EndTime',
|
|
4261
|
+
resId: 'ResId',
|
|
4262
|
+
startTime: 'StartTime',
|
|
4263
|
+
tenantContextShrink: 'TenantContext',
|
|
4264
|
+
userIdListShrink: 'UserIdList',
|
|
4265
|
+
};
|
|
4266
|
+
}
|
|
4267
|
+
|
|
4268
|
+
static types(): { [key: string]: any } {
|
|
4269
|
+
return {
|
|
4270
|
+
content: 'string',
|
|
4271
|
+
endTime: 'number',
|
|
4272
|
+
resId: 'string',
|
|
4273
|
+
startTime: 'number',
|
|
4274
|
+
tenantContextShrink: 'string',
|
|
4275
|
+
userIdListShrink: 'string',
|
|
4276
|
+
};
|
|
4277
|
+
}
|
|
4278
|
+
|
|
4279
|
+
constructor(map?: { [key: string]: any }) {
|
|
4280
|
+
super(map);
|
|
4281
|
+
}
|
|
4282
|
+
}
|
|
4283
|
+
|
|
4284
|
+
export class CreateSearchDomeResponseBody extends $tea.Model {
|
|
4285
|
+
arguments?: any[];
|
|
4286
|
+
requestId?: string;
|
|
4287
|
+
success?: boolean;
|
|
4288
|
+
vendorRequestId?: string;
|
|
4289
|
+
vendorType?: string;
|
|
4290
|
+
static names(): { [key: string]: string } {
|
|
4291
|
+
return {
|
|
4292
|
+
arguments: 'arguments',
|
|
4293
|
+
requestId: 'requestId',
|
|
4294
|
+
success: 'success',
|
|
4295
|
+
vendorRequestId: 'vendorRequestId',
|
|
4296
|
+
vendorType: 'vendorType',
|
|
4297
|
+
};
|
|
4298
|
+
}
|
|
4299
|
+
|
|
4300
|
+
static types(): { [key: string]: any } {
|
|
4301
|
+
return {
|
|
4302
|
+
arguments: { 'type': 'array', 'itemType': 'any' },
|
|
4303
|
+
requestId: 'string',
|
|
4304
|
+
success: 'boolean',
|
|
4305
|
+
vendorRequestId: 'string',
|
|
4306
|
+
vendorType: 'string',
|
|
4307
|
+
};
|
|
4308
|
+
}
|
|
4309
|
+
|
|
4310
|
+
constructor(map?: { [key: string]: any }) {
|
|
4311
|
+
super(map);
|
|
4312
|
+
}
|
|
4313
|
+
}
|
|
4314
|
+
|
|
4315
|
+
export class CreateSearchDomeResponse extends $tea.Model {
|
|
4316
|
+
headers?: { [key: string]: string };
|
|
4317
|
+
statusCode?: number;
|
|
4318
|
+
body?: CreateSearchDomeResponseBody;
|
|
4319
|
+
static names(): { [key: string]: string } {
|
|
4320
|
+
return {
|
|
4321
|
+
headers: 'headers',
|
|
4322
|
+
statusCode: 'statusCode',
|
|
4323
|
+
body: 'body',
|
|
4324
|
+
};
|
|
4325
|
+
}
|
|
4326
|
+
|
|
4327
|
+
static types(): { [key: string]: any } {
|
|
4328
|
+
return {
|
|
4329
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4330
|
+
statusCode: 'number',
|
|
4331
|
+
body: CreateSearchDomeResponseBody,
|
|
4332
|
+
};
|
|
4333
|
+
}
|
|
4334
|
+
|
|
4335
|
+
constructor(map?: { [key: string]: any }) {
|
|
4336
|
+
super(map);
|
|
4337
|
+
}
|
|
4338
|
+
}
|
|
4339
|
+
|
|
4340
|
+
export class CreateSearchKeywordHeaders extends $tea.Model {
|
|
4341
|
+
commonHeaders?: { [key: string]: string };
|
|
4342
|
+
accountContext?: CreateSearchKeywordHeadersAccountContext;
|
|
4343
|
+
static names(): { [key: string]: string } {
|
|
4344
|
+
return {
|
|
4345
|
+
commonHeaders: 'commonHeaders',
|
|
4346
|
+
accountContext: 'AccountContext',
|
|
4347
|
+
};
|
|
4348
|
+
}
|
|
4349
|
+
|
|
4350
|
+
static types(): { [key: string]: any } {
|
|
4351
|
+
return {
|
|
4352
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4353
|
+
accountContext: CreateSearchKeywordHeadersAccountContext,
|
|
4354
|
+
};
|
|
4355
|
+
}
|
|
4356
|
+
|
|
4357
|
+
constructor(map?: { [key: string]: any }) {
|
|
4358
|
+
super(map);
|
|
4359
|
+
}
|
|
4360
|
+
}
|
|
4361
|
+
|
|
4362
|
+
export class CreateSearchKeywordShrinkHeaders extends $tea.Model {
|
|
4363
|
+
commonHeaders?: { [key: string]: string };
|
|
4364
|
+
accountContextShrink?: string;
|
|
4365
|
+
static names(): { [key: string]: string } {
|
|
4366
|
+
return {
|
|
4367
|
+
commonHeaders: 'commonHeaders',
|
|
4368
|
+
accountContextShrink: 'AccountContext',
|
|
4369
|
+
};
|
|
4370
|
+
}
|
|
4371
|
+
|
|
4372
|
+
static types(): { [key: string]: any } {
|
|
4373
|
+
return {
|
|
4374
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4375
|
+
accountContextShrink: 'string',
|
|
4376
|
+
};
|
|
4377
|
+
}
|
|
4378
|
+
|
|
4379
|
+
constructor(map?: { [key: string]: any }) {
|
|
4380
|
+
super(map);
|
|
4381
|
+
}
|
|
4382
|
+
}
|
|
4383
|
+
|
|
4384
|
+
export class CreateSearchKeywordRequest extends $tea.Model {
|
|
4385
|
+
content?: string;
|
|
4386
|
+
endTime?: number;
|
|
4387
|
+
resId?: string;
|
|
4388
|
+
startTime?: number;
|
|
4389
|
+
tenantContext?: CreateSearchKeywordRequestTenantContext;
|
|
4390
|
+
userIdList?: string[];
|
|
4391
|
+
static names(): { [key: string]: string } {
|
|
4392
|
+
return {
|
|
4393
|
+
content: 'Content',
|
|
4394
|
+
endTime: 'EndTime',
|
|
4395
|
+
resId: 'ResId',
|
|
4396
|
+
startTime: 'StartTime',
|
|
4397
|
+
tenantContext: 'TenantContext',
|
|
4398
|
+
userIdList: 'UserIdList',
|
|
4399
|
+
};
|
|
4400
|
+
}
|
|
4401
|
+
|
|
4402
|
+
static types(): { [key: string]: any } {
|
|
4403
|
+
return {
|
|
4404
|
+
content: 'string',
|
|
4405
|
+
endTime: 'number',
|
|
4406
|
+
resId: 'string',
|
|
4407
|
+
startTime: 'number',
|
|
4408
|
+
tenantContext: CreateSearchKeywordRequestTenantContext,
|
|
4409
|
+
userIdList: { 'type': 'array', 'itemType': 'string' },
|
|
4410
|
+
};
|
|
4411
|
+
}
|
|
4412
|
+
|
|
4413
|
+
constructor(map?: { [key: string]: any }) {
|
|
4414
|
+
super(map);
|
|
4415
|
+
}
|
|
4416
|
+
}
|
|
4417
|
+
|
|
4418
|
+
export class CreateSearchKeywordShrinkRequest extends $tea.Model {
|
|
4419
|
+
content?: string;
|
|
4420
|
+
endTime?: number;
|
|
4421
|
+
resId?: string;
|
|
4422
|
+
startTime?: number;
|
|
4423
|
+
tenantContextShrink?: string;
|
|
4424
|
+
userIdListShrink?: string;
|
|
4425
|
+
static names(): { [key: string]: string } {
|
|
4426
|
+
return {
|
|
4427
|
+
content: 'Content',
|
|
4428
|
+
endTime: 'EndTime',
|
|
4429
|
+
resId: 'ResId',
|
|
4430
|
+
startTime: 'StartTime',
|
|
4431
|
+
tenantContextShrink: 'TenantContext',
|
|
4432
|
+
userIdListShrink: 'UserIdList',
|
|
4433
|
+
};
|
|
4434
|
+
}
|
|
4435
|
+
|
|
4436
|
+
static types(): { [key: string]: any } {
|
|
4437
|
+
return {
|
|
4438
|
+
content: 'string',
|
|
4439
|
+
endTime: 'number',
|
|
4440
|
+
resId: 'string',
|
|
4441
|
+
startTime: 'number',
|
|
4442
|
+
tenantContextShrink: 'string',
|
|
4443
|
+
userIdListShrink: 'string',
|
|
4444
|
+
};
|
|
4445
|
+
}
|
|
4446
|
+
|
|
4447
|
+
constructor(map?: { [key: string]: any }) {
|
|
4448
|
+
super(map);
|
|
4449
|
+
}
|
|
4450
|
+
}
|
|
4451
|
+
|
|
4452
|
+
export class CreateSearchKeywordResponseBody extends $tea.Model {
|
|
4453
|
+
arguments?: any[];
|
|
4454
|
+
requestId?: string;
|
|
4455
|
+
success?: boolean;
|
|
4456
|
+
vendorRequestId?: string;
|
|
4457
|
+
vendorType?: string;
|
|
4458
|
+
static names(): { [key: string]: string } {
|
|
4459
|
+
return {
|
|
4460
|
+
arguments: 'arguments',
|
|
4461
|
+
requestId: 'requestId',
|
|
4462
|
+
success: 'success',
|
|
4463
|
+
vendorRequestId: 'vendorRequestId',
|
|
4464
|
+
vendorType: 'vendorType',
|
|
4465
|
+
};
|
|
4466
|
+
}
|
|
4467
|
+
|
|
4468
|
+
static types(): { [key: string]: any } {
|
|
4469
|
+
return {
|
|
4470
|
+
arguments: { 'type': 'array', 'itemType': 'any' },
|
|
4471
|
+
requestId: 'string',
|
|
4472
|
+
success: 'boolean',
|
|
4473
|
+
vendorRequestId: 'string',
|
|
4474
|
+
vendorType: 'string',
|
|
4475
|
+
};
|
|
4476
|
+
}
|
|
4477
|
+
|
|
4478
|
+
constructor(map?: { [key: string]: any }) {
|
|
4479
|
+
super(map);
|
|
4480
|
+
}
|
|
4481
|
+
}
|
|
4482
|
+
|
|
4483
|
+
export class CreateSearchKeywordResponse extends $tea.Model {
|
|
4484
|
+
headers?: { [key: string]: string };
|
|
4485
|
+
statusCode?: number;
|
|
4486
|
+
body?: CreateSearchKeywordResponseBody;
|
|
4487
|
+
static names(): { [key: string]: string } {
|
|
4488
|
+
return {
|
|
4489
|
+
headers: 'headers',
|
|
4490
|
+
statusCode: 'statusCode',
|
|
4491
|
+
body: 'body',
|
|
4492
|
+
};
|
|
4493
|
+
}
|
|
4494
|
+
|
|
4495
|
+
static types(): { [key: string]: any } {
|
|
4496
|
+
return {
|
|
4497
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4498
|
+
statusCode: 'number',
|
|
4499
|
+
body: CreateSearchKeywordResponseBody,
|
|
4500
|
+
};
|
|
4501
|
+
}
|
|
4502
|
+
|
|
4503
|
+
constructor(map?: { [key: string]: any }) {
|
|
4504
|
+
super(map);
|
|
4505
|
+
}
|
|
4506
|
+
}
|
|
4507
|
+
|
|
4172
4508
|
export class CreateSheetHeaders extends $tea.Model {
|
|
4173
4509
|
commonHeaders?: { [key: string]: string };
|
|
4174
4510
|
accountContext?: CreateSheetHeadersAccountContext;
|
|
@@ -4292,9 +4628,9 @@ export class CreateSheetResponseBody extends $tea.Model {
|
|
|
4292
4628
|
}
|
|
4293
4629
|
|
|
4294
4630
|
export class CreateSheetResponse extends $tea.Model {
|
|
4295
|
-
headers
|
|
4296
|
-
statusCode
|
|
4297
|
-
body
|
|
4631
|
+
headers?: { [key: string]: string };
|
|
4632
|
+
statusCode?: number;
|
|
4633
|
+
body?: CreateSheetResponseBody;
|
|
4298
4634
|
static names(): { [key: string]: string } {
|
|
4299
4635
|
return {
|
|
4300
4636
|
headers: 'headers',
|
|
@@ -4439,9 +4775,9 @@ export class CreateSubscribedCalendarResponseBody extends $tea.Model {
|
|
|
4439
4775
|
}
|
|
4440
4776
|
|
|
4441
4777
|
export class CreateSubscribedCalendarResponse extends $tea.Model {
|
|
4442
|
-
headers
|
|
4443
|
-
statusCode
|
|
4444
|
-
body
|
|
4778
|
+
headers?: { [key: string]: string };
|
|
4779
|
+
statusCode?: number;
|
|
4780
|
+
body?: CreateSubscribedCalendarResponseBody;
|
|
4445
4781
|
static names(): { [key: string]: string } {
|
|
4446
4782
|
return {
|
|
4447
4783
|
headers: 'headers',
|
|
@@ -4706,9 +5042,9 @@ export class CreateTodoTaskResponseBody extends $tea.Model {
|
|
|
4706
5042
|
}
|
|
4707
5043
|
|
|
4708
5044
|
export class CreateTodoTaskResponse extends $tea.Model {
|
|
4709
|
-
headers
|
|
4710
|
-
statusCode
|
|
4711
|
-
body
|
|
5045
|
+
headers?: { [key: string]: string };
|
|
5046
|
+
statusCode?: number;
|
|
5047
|
+
body?: CreateTodoTaskResponseBody;
|
|
4712
5048
|
static names(): { [key: string]: string } {
|
|
4713
5049
|
return {
|
|
4714
5050
|
headers: 'headers',
|
|
@@ -4862,9 +5198,9 @@ export class CreateVideoConferenceResponseBody extends $tea.Model {
|
|
|
4862
5198
|
}
|
|
4863
5199
|
|
|
4864
5200
|
export class CreateVideoConferenceResponse extends $tea.Model {
|
|
4865
|
-
headers
|
|
4866
|
-
statusCode
|
|
4867
|
-
body
|
|
5201
|
+
headers?: { [key: string]: string };
|
|
5202
|
+
statusCode?: number;
|
|
5203
|
+
body?: CreateVideoConferenceResponseBody;
|
|
4868
5204
|
static names(): { [key: string]: string } {
|
|
4869
5205
|
return {
|
|
4870
5206
|
headers: 'headers',
|
|
@@ -5012,9 +5348,9 @@ export class CreateWorkspaceResponseBody extends $tea.Model {
|
|
|
5012
5348
|
}
|
|
5013
5349
|
|
|
5014
5350
|
export class CreateWorkspaceResponse extends $tea.Model {
|
|
5015
|
-
headers
|
|
5016
|
-
statusCode
|
|
5017
|
-
body
|
|
5351
|
+
headers?: { [key: string]: string };
|
|
5352
|
+
statusCode?: number;
|
|
5353
|
+
body?: CreateWorkspaceResponseBody;
|
|
5018
5354
|
static names(): { [key: string]: string } {
|
|
5019
5355
|
return {
|
|
5020
5356
|
headers: 'headers',
|
|
@@ -5186,9 +5522,9 @@ export class CreateWorkspaceDocResponseBody extends $tea.Model {
|
|
|
5186
5522
|
}
|
|
5187
5523
|
|
|
5188
5524
|
export class CreateWorkspaceDocResponse extends $tea.Model {
|
|
5189
|
-
headers
|
|
5190
|
-
statusCode
|
|
5191
|
-
body
|
|
5525
|
+
headers?: { [key: string]: string };
|
|
5526
|
+
statusCode?: number;
|
|
5527
|
+
body?: CreateWorkspaceDocResponseBody;
|
|
5192
5528
|
static names(): { [key: string]: string } {
|
|
5193
5529
|
return {
|
|
5194
5530
|
headers: 'headers',
|
|
@@ -5339,9 +5675,9 @@ export class DeleteColumnsResponseBody extends $tea.Model {
|
|
|
5339
5675
|
}
|
|
5340
5676
|
|
|
5341
5677
|
export class DeleteColumnsResponse extends $tea.Model {
|
|
5342
|
-
headers
|
|
5343
|
-
statusCode
|
|
5344
|
-
body
|
|
5678
|
+
headers?: { [key: string]: string };
|
|
5679
|
+
statusCode?: number;
|
|
5680
|
+
body?: DeleteColumnsResponseBody;
|
|
5345
5681
|
static names(): { [key: string]: string } {
|
|
5346
5682
|
return {
|
|
5347
5683
|
headers: 'headers',
|
|
@@ -5470,9 +5806,9 @@ export class DeleteEventResponseBody extends $tea.Model {
|
|
|
5470
5806
|
}
|
|
5471
5807
|
|
|
5472
5808
|
export class DeleteEventResponse extends $tea.Model {
|
|
5473
|
-
headers
|
|
5474
|
-
statusCode
|
|
5475
|
-
body
|
|
5809
|
+
headers?: { [key: string]: string };
|
|
5810
|
+
statusCode?: number;
|
|
5811
|
+
body?: DeleteEventResponseBody;
|
|
5476
5812
|
static names(): { [key: string]: string } {
|
|
5477
5813
|
return {
|
|
5478
5814
|
headers: 'headers',
|
|
@@ -5592,9 +5928,9 @@ export class DeleteFormDataResponseBody extends $tea.Model {
|
|
|
5592
5928
|
}
|
|
5593
5929
|
|
|
5594
5930
|
export class DeleteFormDataResponse extends $tea.Model {
|
|
5595
|
-
headers
|
|
5596
|
-
statusCode
|
|
5597
|
-
body
|
|
5931
|
+
headers?: { [key: string]: string };
|
|
5932
|
+
statusCode?: number;
|
|
5933
|
+
body?: DeleteFormDataResponseBody;
|
|
5598
5934
|
static names(): { [key: string]: string } {
|
|
5599
5935
|
return {
|
|
5600
5936
|
headers: 'headers',
|
|
@@ -5714,9 +6050,9 @@ export class DeleteInstanceResponseBody extends $tea.Model {
|
|
|
5714
6050
|
}
|
|
5715
6051
|
|
|
5716
6052
|
export class DeleteInstanceResponse extends $tea.Model {
|
|
5717
|
-
headers
|
|
5718
|
-
statusCode
|
|
5719
|
-
body
|
|
6053
|
+
headers?: { [key: string]: string };
|
|
6054
|
+
statusCode?: number;
|
|
6055
|
+
body?: DeleteInstanceResponseBody;
|
|
5720
6056
|
static names(): { [key: string]: string } {
|
|
5721
6057
|
return {
|
|
5722
6058
|
headers: 'headers',
|
|
@@ -5849,9 +6185,9 @@ export class DeleteLiveResponseBody extends $tea.Model {
|
|
|
5849
6185
|
}
|
|
5850
6186
|
|
|
5851
6187
|
export class DeleteLiveResponse extends $tea.Model {
|
|
5852
|
-
headers
|
|
5853
|
-
statusCode
|
|
5854
|
-
body
|
|
6188
|
+
headers?: { [key: string]: string };
|
|
6189
|
+
statusCode?: number;
|
|
6190
|
+
body?: DeleteLiveResponseBody;
|
|
5855
6191
|
static names(): { [key: string]: string } {
|
|
5856
6192
|
return {
|
|
5857
6193
|
headers: 'headers',
|
|
@@ -5984,9 +6320,9 @@ export class DeleteMeetingRoomResponseBody extends $tea.Model {
|
|
|
5984
6320
|
}
|
|
5985
6321
|
|
|
5986
6322
|
export class DeleteMeetingRoomResponse extends $tea.Model {
|
|
5987
|
-
headers
|
|
5988
|
-
statusCode
|
|
5989
|
-
body
|
|
6323
|
+
headers?: { [key: string]: string };
|
|
6324
|
+
statusCode?: number;
|
|
6325
|
+
body?: DeleteMeetingRoomResponseBody;
|
|
5990
6326
|
static names(): { [key: string]: string } {
|
|
5991
6327
|
return {
|
|
5992
6328
|
headers: 'headers',
|
|
@@ -6119,9 +6455,9 @@ export class DeleteMeetingRoomGroupResponseBody extends $tea.Model {
|
|
|
6119
6455
|
}
|
|
6120
6456
|
|
|
6121
6457
|
export class DeleteMeetingRoomGroupResponse extends $tea.Model {
|
|
6122
|
-
headers
|
|
6123
|
-
statusCode
|
|
6124
|
-
body
|
|
6458
|
+
headers?: { [key: string]: string };
|
|
6459
|
+
statusCode?: number;
|
|
6460
|
+
body?: DeleteMeetingRoomGroupResponseBody;
|
|
6125
6461
|
static names(): { [key: string]: string } {
|
|
6126
6462
|
return {
|
|
6127
6463
|
headers: 'headers',
|
|
@@ -6272,9 +6608,9 @@ export class DeleteRowsResponseBody extends $tea.Model {
|
|
|
6272
6608
|
}
|
|
6273
6609
|
|
|
6274
6610
|
export class DeleteRowsResponse extends $tea.Model {
|
|
6275
|
-
headers
|
|
6276
|
-
statusCode
|
|
6277
|
-
body
|
|
6611
|
+
headers?: { [key: string]: string };
|
|
6612
|
+
statusCode?: number;
|
|
6613
|
+
body?: DeleteRowsResponseBody;
|
|
6278
6614
|
static names(): { [key: string]: string } {
|
|
6279
6615
|
return {
|
|
6280
6616
|
headers: 'headers',
|
|
@@ -6385,9 +6721,9 @@ export class DeleteScenegroupMemberResponseBody extends $tea.Model {
|
|
|
6385
6721
|
}
|
|
6386
6722
|
|
|
6387
6723
|
export class DeleteScenegroupMemberResponse extends $tea.Model {
|
|
6388
|
-
headers
|
|
6389
|
-
statusCode
|
|
6390
|
-
body
|
|
6724
|
+
headers?: { [key: string]: string };
|
|
6725
|
+
statusCode?: number;
|
|
6726
|
+
body?: DeleteScenegroupMemberResponseBody;
|
|
6391
6727
|
static names(): { [key: string]: string } {
|
|
6392
6728
|
return {
|
|
6393
6729
|
headers: 'headers',
|
|
@@ -6526,9 +6862,9 @@ export class DeleteSheetResponseBody extends $tea.Model {
|
|
|
6526
6862
|
}
|
|
6527
6863
|
|
|
6528
6864
|
export class DeleteSheetResponse extends $tea.Model {
|
|
6529
|
-
headers
|
|
6530
|
-
statusCode
|
|
6531
|
-
body
|
|
6865
|
+
headers?: { [key: string]: string };
|
|
6866
|
+
statusCode?: number;
|
|
6867
|
+
body?: DeleteSheetResponseBody;
|
|
6532
6868
|
static names(): { [key: string]: string } {
|
|
6533
6869
|
return {
|
|
6534
6870
|
headers: 'headers',
|
|
@@ -6636,9 +6972,9 @@ export class DeleteSubscribedCalendarResponseBody extends $tea.Model {
|
|
|
6636
6972
|
}
|
|
6637
6973
|
|
|
6638
6974
|
export class DeleteSubscribedCalendarResponse extends $tea.Model {
|
|
6639
|
-
headers
|
|
6640
|
-
statusCode
|
|
6641
|
-
body
|
|
6975
|
+
headers?: { [key: string]: string };
|
|
6976
|
+
statusCode?: number;
|
|
6977
|
+
body?: DeleteSubscribedCalendarResponseBody;
|
|
6642
6978
|
static names(): { [key: string]: string } {
|
|
6643
6979
|
return {
|
|
6644
6980
|
headers: 'headers',
|
|
@@ -6777,9 +7113,9 @@ export class DeleteTodoTaskResponseBody extends $tea.Model {
|
|
|
6777
7113
|
}
|
|
6778
7114
|
|
|
6779
7115
|
export class DeleteTodoTaskResponse extends $tea.Model {
|
|
6780
|
-
headers
|
|
6781
|
-
statusCode
|
|
6782
|
-
body
|
|
7116
|
+
headers?: { [key: string]: string };
|
|
7117
|
+
statusCode?: number;
|
|
7118
|
+
body?: DeleteTodoTaskResponseBody;
|
|
6783
7119
|
static names(): { [key: string]: string } {
|
|
6784
7120
|
return {
|
|
6785
7121
|
headers: 'headers',
|
|
@@ -6921,9 +7257,9 @@ export class DeleteWorkspaceDocMembersResponseBody extends $tea.Model {
|
|
|
6921
7257
|
}
|
|
6922
7258
|
|
|
6923
7259
|
export class DeleteWorkspaceDocMembersResponse extends $tea.Model {
|
|
6924
|
-
headers
|
|
6925
|
-
statusCode
|
|
6926
|
-
body
|
|
7260
|
+
headers?: { [key: string]: string };
|
|
7261
|
+
statusCode?: number;
|
|
7262
|
+
body?: DeleteWorkspaceDocMembersResponseBody;
|
|
6927
7263
|
static names(): { [key: string]: string } {
|
|
6928
7264
|
return {
|
|
6929
7265
|
headers: 'headers',
|
|
@@ -7059,9 +7395,9 @@ export class DeleteWorkspaceMembersResponseBody extends $tea.Model {
|
|
|
7059
7395
|
}
|
|
7060
7396
|
|
|
7061
7397
|
export class DeleteWorkspaceMembersResponse extends $tea.Model {
|
|
7062
|
-
headers
|
|
7063
|
-
statusCode
|
|
7064
|
-
body
|
|
7398
|
+
headers?: { [key: string]: string };
|
|
7399
|
+
statusCode?: number;
|
|
7400
|
+
body?: DeleteWorkspaceMembersResponseBody;
|
|
7065
7401
|
static names(): { [key: string]: string } {
|
|
7066
7402
|
return {
|
|
7067
7403
|
headers: 'headers',
|
|
@@ -7193,9 +7529,9 @@ export class ExecuteBatchTaskResponseBody extends $tea.Model {
|
|
|
7193
7529
|
}
|
|
7194
7530
|
|
|
7195
7531
|
export class ExecuteBatchTaskResponse extends $tea.Model {
|
|
7196
|
-
headers
|
|
7197
|
-
statusCode
|
|
7198
|
-
body
|
|
7532
|
+
headers?: { [key: string]: string };
|
|
7533
|
+
statusCode?: number;
|
|
7534
|
+
body?: ExecuteBatchTaskResponseBody;
|
|
7199
7535
|
static names(): { [key: string]: string } {
|
|
7200
7536
|
return {
|
|
7201
7537
|
headers: 'headers',
|
|
@@ -7327,9 +7663,9 @@ export class ExecutePlatformTaskResponseBody extends $tea.Model {
|
|
|
7327
7663
|
}
|
|
7328
7664
|
|
|
7329
7665
|
export class ExecutePlatformTaskResponse extends $tea.Model {
|
|
7330
|
-
headers
|
|
7331
|
-
statusCode
|
|
7332
|
-
body
|
|
7666
|
+
headers?: { [key: string]: string };
|
|
7667
|
+
statusCode?: number;
|
|
7668
|
+
body?: ExecutePlatformTaskResponseBody;
|
|
7333
7669
|
static names(): { [key: string]: string } {
|
|
7334
7670
|
return {
|
|
7335
7671
|
headers: 'headers',
|
|
@@ -7467,9 +7803,9 @@ export class ExecuteTaskResponseBody extends $tea.Model {
|
|
|
7467
7803
|
}
|
|
7468
7804
|
|
|
7469
7805
|
export class ExecuteTaskResponse extends $tea.Model {
|
|
7470
|
-
headers
|
|
7471
|
-
statusCode
|
|
7472
|
-
body
|
|
7806
|
+
headers?: { [key: string]: string };
|
|
7807
|
+
statusCode?: number;
|
|
7808
|
+
body?: ExecuteTaskResponseBody;
|
|
7473
7809
|
static names(): { [key: string]: string } {
|
|
7474
7810
|
return {
|
|
7475
7811
|
headers: 'headers',
|
|
@@ -7592,9 +7928,9 @@ export class GetActivityListResponseBody extends $tea.Model {
|
|
|
7592
7928
|
}
|
|
7593
7929
|
|
|
7594
7930
|
export class GetActivityListResponse extends $tea.Model {
|
|
7595
|
-
headers
|
|
7596
|
-
statusCode
|
|
7597
|
-
body
|
|
7931
|
+
headers?: { [key: string]: string };
|
|
7932
|
+
statusCode?: number;
|
|
7933
|
+
body?: GetActivityListResponseBody;
|
|
7598
7934
|
static names(): { [key: string]: string } {
|
|
7599
7935
|
return {
|
|
7600
7936
|
headers: 'headers',
|
|
@@ -7727,9 +8063,9 @@ export class GetAllSheetsResponseBody extends $tea.Model {
|
|
|
7727
8063
|
}
|
|
7728
8064
|
|
|
7729
8065
|
export class GetAllSheetsResponse extends $tea.Model {
|
|
7730
|
-
headers
|
|
7731
|
-
statusCode
|
|
7732
|
-
body
|
|
8066
|
+
headers?: { [key: string]: string };
|
|
8067
|
+
statusCode?: number;
|
|
8068
|
+
body?: GetAllSheetsResponseBody;
|
|
7733
8069
|
static names(): { [key: string]: string } {
|
|
7734
8070
|
return {
|
|
7735
8071
|
headers: 'headers',
|
|
@@ -7876,9 +8212,9 @@ export class GetCorpAccomplishmentTasksResponseBody extends $tea.Model {
|
|
|
7876
8212
|
}
|
|
7877
8213
|
|
|
7878
8214
|
export class GetCorpAccomplishmentTasksResponse extends $tea.Model {
|
|
7879
|
-
headers
|
|
7880
|
-
statusCode
|
|
7881
|
-
body
|
|
8215
|
+
headers?: { [key: string]: string };
|
|
8216
|
+
statusCode?: number;
|
|
8217
|
+
body?: GetCorpAccomplishmentTasksResponseBody;
|
|
7882
8218
|
static names(): { [key: string]: string } {
|
|
7883
8219
|
return {
|
|
7884
8220
|
headers: 'headers',
|
|
@@ -8025,9 +8361,9 @@ export class GetCorpTasksResponseBody extends $tea.Model {
|
|
|
8025
8361
|
}
|
|
8026
8362
|
|
|
8027
8363
|
export class GetCorpTasksResponse extends $tea.Model {
|
|
8028
|
-
headers
|
|
8029
|
-
statusCode
|
|
8030
|
-
body
|
|
8364
|
+
headers?: { [key: string]: string };
|
|
8365
|
+
statusCode?: number;
|
|
8366
|
+
body?: GetCorpTasksResponseBody;
|
|
8031
8367
|
static names(): { [key: string]: string } {
|
|
8032
8368
|
return {
|
|
8033
8369
|
headers: 'headers',
|
|
@@ -8049,6 +8385,153 @@ export class GetCorpTasksResponse extends $tea.Model {
|
|
|
8049
8385
|
}
|
|
8050
8386
|
}
|
|
8051
8387
|
|
|
8388
|
+
export class GetDocContentHeaders extends $tea.Model {
|
|
8389
|
+
commonHeaders?: { [key: string]: string };
|
|
8390
|
+
accountContext?: GetDocContentHeadersAccountContext;
|
|
8391
|
+
static names(): { [key: string]: string } {
|
|
8392
|
+
return {
|
|
8393
|
+
commonHeaders: 'commonHeaders',
|
|
8394
|
+
accountContext: 'AccountContext',
|
|
8395
|
+
};
|
|
8396
|
+
}
|
|
8397
|
+
|
|
8398
|
+
static types(): { [key: string]: any } {
|
|
8399
|
+
return {
|
|
8400
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8401
|
+
accountContext: GetDocContentHeadersAccountContext,
|
|
8402
|
+
};
|
|
8403
|
+
}
|
|
8404
|
+
|
|
8405
|
+
constructor(map?: { [key: string]: any }) {
|
|
8406
|
+
super(map);
|
|
8407
|
+
}
|
|
8408
|
+
}
|
|
8409
|
+
|
|
8410
|
+
export class GetDocContentShrinkHeaders extends $tea.Model {
|
|
8411
|
+
commonHeaders?: { [key: string]: string };
|
|
8412
|
+
accountContextShrink?: string;
|
|
8413
|
+
static names(): { [key: string]: string } {
|
|
8414
|
+
return {
|
|
8415
|
+
commonHeaders: 'commonHeaders',
|
|
8416
|
+
accountContextShrink: 'AccountContext',
|
|
8417
|
+
};
|
|
8418
|
+
}
|
|
8419
|
+
|
|
8420
|
+
static types(): { [key: string]: any } {
|
|
8421
|
+
return {
|
|
8422
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8423
|
+
accountContextShrink: 'string',
|
|
8424
|
+
};
|
|
8425
|
+
}
|
|
8426
|
+
|
|
8427
|
+
constructor(map?: { [key: string]: any }) {
|
|
8428
|
+
super(map);
|
|
8429
|
+
}
|
|
8430
|
+
}
|
|
8431
|
+
|
|
8432
|
+
export class GetDocContentRequest extends $tea.Model {
|
|
8433
|
+
dentryUuid?: string;
|
|
8434
|
+
targetFormat?: string;
|
|
8435
|
+
tenantContext?: GetDocContentRequestTenantContext;
|
|
8436
|
+
static names(): { [key: string]: string } {
|
|
8437
|
+
return {
|
|
8438
|
+
dentryUuid: 'DentryUuid',
|
|
8439
|
+
targetFormat: 'TargetFormat',
|
|
8440
|
+
tenantContext: 'TenantContext',
|
|
8441
|
+
};
|
|
8442
|
+
}
|
|
8443
|
+
|
|
8444
|
+
static types(): { [key: string]: any } {
|
|
8445
|
+
return {
|
|
8446
|
+
dentryUuid: 'string',
|
|
8447
|
+
targetFormat: 'string',
|
|
8448
|
+
tenantContext: GetDocContentRequestTenantContext,
|
|
8449
|
+
};
|
|
8450
|
+
}
|
|
8451
|
+
|
|
8452
|
+
constructor(map?: { [key: string]: any }) {
|
|
8453
|
+
super(map);
|
|
8454
|
+
}
|
|
8455
|
+
}
|
|
8456
|
+
|
|
8457
|
+
export class GetDocContentShrinkRequest extends $tea.Model {
|
|
8458
|
+
dentryUuid?: string;
|
|
8459
|
+
targetFormat?: string;
|
|
8460
|
+
tenantContextShrink?: string;
|
|
8461
|
+
static names(): { [key: string]: string } {
|
|
8462
|
+
return {
|
|
8463
|
+
dentryUuid: 'DentryUuid',
|
|
8464
|
+
targetFormat: 'TargetFormat',
|
|
8465
|
+
tenantContextShrink: 'TenantContext',
|
|
8466
|
+
};
|
|
8467
|
+
}
|
|
8468
|
+
|
|
8469
|
+
static types(): { [key: string]: any } {
|
|
8470
|
+
return {
|
|
8471
|
+
dentryUuid: 'string',
|
|
8472
|
+
targetFormat: 'string',
|
|
8473
|
+
tenantContextShrink: 'string',
|
|
8474
|
+
};
|
|
8475
|
+
}
|
|
8476
|
+
|
|
8477
|
+
constructor(map?: { [key: string]: any }) {
|
|
8478
|
+
super(map);
|
|
8479
|
+
}
|
|
8480
|
+
}
|
|
8481
|
+
|
|
8482
|
+
export class GetDocContentResponseBody extends $tea.Model {
|
|
8483
|
+
requestId?: string;
|
|
8484
|
+
taskId?: number;
|
|
8485
|
+
vendorRequestId?: string;
|
|
8486
|
+
vendorType?: string;
|
|
8487
|
+
static names(): { [key: string]: string } {
|
|
8488
|
+
return {
|
|
8489
|
+
requestId: 'requestId',
|
|
8490
|
+
taskId: 'taskId',
|
|
8491
|
+
vendorRequestId: 'vendorRequestId',
|
|
8492
|
+
vendorType: 'vendorType',
|
|
8493
|
+
};
|
|
8494
|
+
}
|
|
8495
|
+
|
|
8496
|
+
static types(): { [key: string]: any } {
|
|
8497
|
+
return {
|
|
8498
|
+
requestId: 'string',
|
|
8499
|
+
taskId: 'number',
|
|
8500
|
+
vendorRequestId: 'string',
|
|
8501
|
+
vendorType: 'string',
|
|
8502
|
+
};
|
|
8503
|
+
}
|
|
8504
|
+
|
|
8505
|
+
constructor(map?: { [key: string]: any }) {
|
|
8506
|
+
super(map);
|
|
8507
|
+
}
|
|
8508
|
+
}
|
|
8509
|
+
|
|
8510
|
+
export class GetDocContentResponse extends $tea.Model {
|
|
8511
|
+
headers?: { [key: string]: string };
|
|
8512
|
+
statusCode?: number;
|
|
8513
|
+
body?: GetDocContentResponseBody;
|
|
8514
|
+
static names(): { [key: string]: string } {
|
|
8515
|
+
return {
|
|
8516
|
+
headers: 'headers',
|
|
8517
|
+
statusCode: 'statusCode',
|
|
8518
|
+
body: 'body',
|
|
8519
|
+
};
|
|
8520
|
+
}
|
|
8521
|
+
|
|
8522
|
+
static types(): { [key: string]: any } {
|
|
8523
|
+
return {
|
|
8524
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8525
|
+
statusCode: 'number',
|
|
8526
|
+
body: GetDocContentResponseBody,
|
|
8527
|
+
};
|
|
8528
|
+
}
|
|
8529
|
+
|
|
8530
|
+
constructor(map?: { [key: string]: any }) {
|
|
8531
|
+
super(map);
|
|
8532
|
+
}
|
|
8533
|
+
}
|
|
8534
|
+
|
|
8052
8535
|
export class GetEventHeaders extends $tea.Model {
|
|
8053
8536
|
commonHeaders?: { [key: string]: string };
|
|
8054
8537
|
accountContext?: GetEventHeadersAccountContext;
|
|
@@ -8201,9 +8684,9 @@ export class GetEventResponseBody extends $tea.Model {
|
|
|
8201
8684
|
}
|
|
8202
8685
|
|
|
8203
8686
|
export class GetEventResponse extends $tea.Model {
|
|
8204
|
-
headers
|
|
8205
|
-
statusCode
|
|
8206
|
-
body
|
|
8687
|
+
headers?: { [key: string]: string };
|
|
8688
|
+
statusCode?: number;
|
|
8689
|
+
body?: GetEventResponseBody;
|
|
8207
8690
|
static names(): { [key: string]: string } {
|
|
8208
8691
|
return {
|
|
8209
8692
|
headers: 'headers',
|
|
@@ -8326,9 +8809,9 @@ export class GetFieldDefByUuidResponseBody extends $tea.Model {
|
|
|
8326
8809
|
}
|
|
8327
8810
|
|
|
8328
8811
|
export class GetFieldDefByUuidResponse extends $tea.Model {
|
|
8329
|
-
headers
|
|
8330
|
-
statusCode
|
|
8331
|
-
body
|
|
8812
|
+
headers?: { [key: string]: string };
|
|
8813
|
+
statusCode?: number;
|
|
8814
|
+
body?: GetFieldDefByUuidResponseBody;
|
|
8332
8815
|
static names(): { [key: string]: string } {
|
|
8333
8816
|
return {
|
|
8334
8817
|
headers: 'headers',
|
|
@@ -8451,9 +8934,9 @@ export class GetFormComponentDefinitionListResponseBody extends $tea.Model {
|
|
|
8451
8934
|
}
|
|
8452
8935
|
|
|
8453
8936
|
export class GetFormComponentDefinitionListResponse extends $tea.Model {
|
|
8454
|
-
headers
|
|
8455
|
-
statusCode
|
|
8456
|
-
body
|
|
8937
|
+
headers?: { [key: string]: string };
|
|
8938
|
+
statusCode?: number;
|
|
8939
|
+
body?: GetFormComponentDefinitionListResponseBody;
|
|
8457
8940
|
static names(): { [key: string]: string } {
|
|
8458
8941
|
return {
|
|
8459
8942
|
headers: 'headers',
|
|
@@ -8585,9 +9068,9 @@ export class GetFormDataByIDResponseBody extends $tea.Model {
|
|
|
8585
9068
|
}
|
|
8586
9069
|
|
|
8587
9070
|
export class GetFormDataByIDResponse extends $tea.Model {
|
|
8588
|
-
headers
|
|
8589
|
-
statusCode
|
|
8590
|
-
body
|
|
9071
|
+
headers?: { [key: string]: string };
|
|
9072
|
+
statusCode?: number;
|
|
9073
|
+
body?: GetFormDataByIDResponseBody;
|
|
8591
9074
|
static names(): { [key: string]: string } {
|
|
8592
9075
|
return {
|
|
8593
9076
|
headers: 'headers',
|
|
@@ -8722,9 +9205,9 @@ export class GetFormListInAppResponseBody extends $tea.Model {
|
|
|
8722
9205
|
}
|
|
8723
9206
|
|
|
8724
9207
|
export class GetFormListInAppResponse extends $tea.Model {
|
|
8725
|
-
headers
|
|
8726
|
-
statusCode
|
|
8727
|
-
body
|
|
9208
|
+
headers?: { [key: string]: string };
|
|
9209
|
+
statusCode?: number;
|
|
9210
|
+
body?: GetFormListInAppResponseBody;
|
|
8728
9211
|
static names(): { [key: string]: string } {
|
|
8729
9212
|
return {
|
|
8730
9213
|
headers: 'headers',
|
|
@@ -8880,9 +9363,9 @@ export class GetInstanceByIdResponseBody extends $tea.Model {
|
|
|
8880
9363
|
}
|
|
8881
9364
|
|
|
8882
9365
|
export class GetInstanceByIdResponse extends $tea.Model {
|
|
8883
|
-
headers
|
|
8884
|
-
statusCode
|
|
8885
|
-
body
|
|
9366
|
+
headers?: { [key: string]: string };
|
|
9367
|
+
statusCode?: number;
|
|
9368
|
+
body?: GetInstanceByIdResponseBody;
|
|
8886
9369
|
static names(): { [key: string]: string } {
|
|
8887
9370
|
return {
|
|
8888
9371
|
headers: 'headers',
|
|
@@ -9044,9 +9527,9 @@ export class GetInstanceIdListResponseBody extends $tea.Model {
|
|
|
9044
9527
|
}
|
|
9045
9528
|
|
|
9046
9529
|
export class GetInstanceIdListResponse extends $tea.Model {
|
|
9047
|
-
headers
|
|
9048
|
-
statusCode
|
|
9049
|
-
body
|
|
9530
|
+
headers?: { [key: string]: string };
|
|
9531
|
+
statusCode?: number;
|
|
9532
|
+
body?: GetInstanceIdListResponseBody;
|
|
9050
9533
|
static names(): { [key: string]: string } {
|
|
9051
9534
|
return {
|
|
9052
9535
|
headers: 'headers',
|
|
@@ -9211,9 +9694,9 @@ export class GetInstancesResponseBody extends $tea.Model {
|
|
|
9211
9694
|
}
|
|
9212
9695
|
|
|
9213
9696
|
export class GetInstancesResponse extends $tea.Model {
|
|
9214
|
-
headers
|
|
9215
|
-
statusCode
|
|
9216
|
-
body
|
|
9697
|
+
headers?: { [key: string]: string };
|
|
9698
|
+
statusCode?: number;
|
|
9699
|
+
body?: GetInstancesResponseBody;
|
|
9217
9700
|
static names(): { [key: string]: string } {
|
|
9218
9701
|
return {
|
|
9219
9702
|
headers: 'headers',
|
|
@@ -9336,9 +9819,9 @@ export class GetInstancesByIdListResponseBody extends $tea.Model {
|
|
|
9336
9819
|
}
|
|
9337
9820
|
|
|
9338
9821
|
export class GetInstancesByIdListResponse extends $tea.Model {
|
|
9339
|
-
headers
|
|
9340
|
-
statusCode
|
|
9341
|
-
body
|
|
9822
|
+
headers?: { [key: string]: string };
|
|
9823
|
+
statusCode?: number;
|
|
9824
|
+
body?: GetInstancesByIdListResponseBody;
|
|
9342
9825
|
static names(): { [key: string]: string } {
|
|
9343
9826
|
return {
|
|
9344
9827
|
headers: 'headers',
|
|
@@ -9360,6 +9843,147 @@ export class GetInstancesByIdListResponse extends $tea.Model {
|
|
|
9360
9843
|
}
|
|
9361
9844
|
}
|
|
9362
9845
|
|
|
9846
|
+
export class GetLiveReplayUrlHeaders extends $tea.Model {
|
|
9847
|
+
commonHeaders?: { [key: string]: string };
|
|
9848
|
+
accountContext?: GetLiveReplayUrlHeadersAccountContext;
|
|
9849
|
+
static names(): { [key: string]: string } {
|
|
9850
|
+
return {
|
|
9851
|
+
commonHeaders: 'commonHeaders',
|
|
9852
|
+
accountContext: 'AccountContext',
|
|
9853
|
+
};
|
|
9854
|
+
}
|
|
9855
|
+
|
|
9856
|
+
static types(): { [key: string]: any } {
|
|
9857
|
+
return {
|
|
9858
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9859
|
+
accountContext: GetLiveReplayUrlHeadersAccountContext,
|
|
9860
|
+
};
|
|
9861
|
+
}
|
|
9862
|
+
|
|
9863
|
+
constructor(map?: { [key: string]: any }) {
|
|
9864
|
+
super(map);
|
|
9865
|
+
}
|
|
9866
|
+
}
|
|
9867
|
+
|
|
9868
|
+
export class GetLiveReplayUrlShrinkHeaders extends $tea.Model {
|
|
9869
|
+
commonHeaders?: { [key: string]: string };
|
|
9870
|
+
accountContextShrink?: string;
|
|
9871
|
+
static names(): { [key: string]: string } {
|
|
9872
|
+
return {
|
|
9873
|
+
commonHeaders: 'commonHeaders',
|
|
9874
|
+
accountContextShrink: 'AccountContext',
|
|
9875
|
+
};
|
|
9876
|
+
}
|
|
9877
|
+
|
|
9878
|
+
static types(): { [key: string]: any } {
|
|
9879
|
+
return {
|
|
9880
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9881
|
+
accountContextShrink: 'string',
|
|
9882
|
+
};
|
|
9883
|
+
}
|
|
9884
|
+
|
|
9885
|
+
constructor(map?: { [key: string]: any }) {
|
|
9886
|
+
super(map);
|
|
9887
|
+
}
|
|
9888
|
+
}
|
|
9889
|
+
|
|
9890
|
+
export class GetLiveReplayUrlRequest extends $tea.Model {
|
|
9891
|
+
liveId?: string;
|
|
9892
|
+
tenantContext?: GetLiveReplayUrlRequestTenantContext;
|
|
9893
|
+
static names(): { [key: string]: string } {
|
|
9894
|
+
return {
|
|
9895
|
+
liveId: 'LiveId',
|
|
9896
|
+
tenantContext: 'TenantContext',
|
|
9897
|
+
};
|
|
9898
|
+
}
|
|
9899
|
+
|
|
9900
|
+
static types(): { [key: string]: any } {
|
|
9901
|
+
return {
|
|
9902
|
+
liveId: 'string',
|
|
9903
|
+
tenantContext: GetLiveReplayUrlRequestTenantContext,
|
|
9904
|
+
};
|
|
9905
|
+
}
|
|
9906
|
+
|
|
9907
|
+
constructor(map?: { [key: string]: any }) {
|
|
9908
|
+
super(map);
|
|
9909
|
+
}
|
|
9910
|
+
}
|
|
9911
|
+
|
|
9912
|
+
export class GetLiveReplayUrlShrinkRequest extends $tea.Model {
|
|
9913
|
+
liveId?: string;
|
|
9914
|
+
tenantContextShrink?: string;
|
|
9915
|
+
static names(): { [key: string]: string } {
|
|
9916
|
+
return {
|
|
9917
|
+
liveId: 'LiveId',
|
|
9918
|
+
tenantContextShrink: 'TenantContext',
|
|
9919
|
+
};
|
|
9920
|
+
}
|
|
9921
|
+
|
|
9922
|
+
static types(): { [key: string]: any } {
|
|
9923
|
+
return {
|
|
9924
|
+
liveId: 'string',
|
|
9925
|
+
tenantContextShrink: 'string',
|
|
9926
|
+
};
|
|
9927
|
+
}
|
|
9928
|
+
|
|
9929
|
+
constructor(map?: { [key: string]: any }) {
|
|
9930
|
+
super(map);
|
|
9931
|
+
}
|
|
9932
|
+
}
|
|
9933
|
+
|
|
9934
|
+
export class GetLiveReplayUrlResponseBody extends $tea.Model {
|
|
9935
|
+
replayUrl?: string;
|
|
9936
|
+
requestId?: string;
|
|
9937
|
+
vendorRequestId?: string;
|
|
9938
|
+
vendorType?: string;
|
|
9939
|
+
static names(): { [key: string]: string } {
|
|
9940
|
+
return {
|
|
9941
|
+
replayUrl: 'replayUrl',
|
|
9942
|
+
requestId: 'requestId',
|
|
9943
|
+
vendorRequestId: 'vendorRequestId',
|
|
9944
|
+
vendorType: 'vendorType',
|
|
9945
|
+
};
|
|
9946
|
+
}
|
|
9947
|
+
|
|
9948
|
+
static types(): { [key: string]: any } {
|
|
9949
|
+
return {
|
|
9950
|
+
replayUrl: 'string',
|
|
9951
|
+
requestId: 'string',
|
|
9952
|
+
vendorRequestId: 'string',
|
|
9953
|
+
vendorType: 'string',
|
|
9954
|
+
};
|
|
9955
|
+
}
|
|
9956
|
+
|
|
9957
|
+
constructor(map?: { [key: string]: any }) {
|
|
9958
|
+
super(map);
|
|
9959
|
+
}
|
|
9960
|
+
}
|
|
9961
|
+
|
|
9962
|
+
export class GetLiveReplayUrlResponse extends $tea.Model {
|
|
9963
|
+
headers?: { [key: string]: string };
|
|
9964
|
+
statusCode?: number;
|
|
9965
|
+
body?: GetLiveReplayUrlResponseBody;
|
|
9966
|
+
static names(): { [key: string]: string } {
|
|
9967
|
+
return {
|
|
9968
|
+
headers: 'headers',
|
|
9969
|
+
statusCode: 'statusCode',
|
|
9970
|
+
body: 'body',
|
|
9971
|
+
};
|
|
9972
|
+
}
|
|
9973
|
+
|
|
9974
|
+
static types(): { [key: string]: any } {
|
|
9975
|
+
return {
|
|
9976
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9977
|
+
statusCode: 'number',
|
|
9978
|
+
body: GetLiveReplayUrlResponseBody,
|
|
9979
|
+
};
|
|
9980
|
+
}
|
|
9981
|
+
|
|
9982
|
+
constructor(map?: { [key: string]: any }) {
|
|
9983
|
+
super(map);
|
|
9984
|
+
}
|
|
9985
|
+
}
|
|
9986
|
+
|
|
9363
9987
|
export class GetMeCorpSubmissionHeaders extends $tea.Model {
|
|
9364
9988
|
commonHeaders?: { [key: string]: string };
|
|
9365
9989
|
accountContext?: GetMeCorpSubmissionHeadersAccountContext;
|
|
@@ -9485,9 +10109,9 @@ export class GetMeCorpSubmissionResponseBody extends $tea.Model {
|
|
|
9485
10109
|
}
|
|
9486
10110
|
|
|
9487
10111
|
export class GetMeCorpSubmissionResponse extends $tea.Model {
|
|
9488
|
-
headers
|
|
9489
|
-
statusCode
|
|
9490
|
-
body
|
|
10112
|
+
headers?: { [key: string]: string };
|
|
10113
|
+
statusCode?: number;
|
|
10114
|
+
body?: GetMeCorpSubmissionResponseBody;
|
|
9491
10115
|
static names(): { [key: string]: string } {
|
|
9492
10116
|
return {
|
|
9493
10117
|
headers: 'headers',
|
|
@@ -9626,9 +10250,9 @@ export class GetMeetingRoomsScheduleResponseBody extends $tea.Model {
|
|
|
9626
10250
|
}
|
|
9627
10251
|
|
|
9628
10252
|
export class GetMeetingRoomsScheduleResponse extends $tea.Model {
|
|
9629
|
-
headers
|
|
9630
|
-
statusCode
|
|
9631
|
-
body
|
|
10253
|
+
headers?: { [key: string]: string };
|
|
10254
|
+
statusCode?: number;
|
|
10255
|
+
body?: GetMeetingRoomsScheduleResponseBody;
|
|
9632
10256
|
static names(): { [key: string]: string } {
|
|
9633
10257
|
return {
|
|
9634
10258
|
headers: 'headers',
|
|
@@ -9761,9 +10385,9 @@ export class GetMineWorkspaceResponseBody extends $tea.Model {
|
|
|
9761
10385
|
}
|
|
9762
10386
|
|
|
9763
10387
|
export class GetMineWorkspaceResponse extends $tea.Model {
|
|
9764
|
-
headers
|
|
9765
|
-
statusCode
|
|
9766
|
-
body
|
|
10388
|
+
headers?: { [key: string]: string };
|
|
10389
|
+
statusCode?: number;
|
|
10390
|
+
body?: GetMineWorkspaceResponseBody;
|
|
9767
10391
|
static names(): { [key: string]: string } {
|
|
9768
10392
|
return {
|
|
9769
10393
|
headers: 'headers',
|
|
@@ -9908,9 +10532,9 @@ export class GetNodeResponseBody extends $tea.Model {
|
|
|
9908
10532
|
}
|
|
9909
10533
|
|
|
9910
10534
|
export class GetNodeResponse extends $tea.Model {
|
|
9911
|
-
headers
|
|
9912
|
-
statusCode
|
|
9913
|
-
body
|
|
10535
|
+
headers?: { [key: string]: string };
|
|
10536
|
+
statusCode?: number;
|
|
10537
|
+
body?: GetNodeResponseBody;
|
|
9914
10538
|
static names(): { [key: string]: string } {
|
|
9915
10539
|
return {
|
|
9916
10540
|
headers: 'headers',
|
|
@@ -10049,9 +10673,9 @@ export class GetNodeByUrlResponseBody extends $tea.Model {
|
|
|
10049
10673
|
}
|
|
10050
10674
|
|
|
10051
10675
|
export class GetNodeByUrlResponse extends $tea.Model {
|
|
10052
|
-
headers
|
|
10053
|
-
statusCode
|
|
10054
|
-
body
|
|
10676
|
+
headers?: { [key: string]: string };
|
|
10677
|
+
statusCode?: number;
|
|
10678
|
+
body?: GetNodeByUrlResponseBody;
|
|
10055
10679
|
static names(): { [key: string]: string } {
|
|
10056
10680
|
return {
|
|
10057
10681
|
headers: 'headers',
|
|
@@ -10190,9 +10814,9 @@ export class GetNodesResponseBody extends $tea.Model {
|
|
|
10190
10814
|
}
|
|
10191
10815
|
|
|
10192
10816
|
export class GetNodesResponse extends $tea.Model {
|
|
10193
|
-
headers
|
|
10194
|
-
statusCode
|
|
10195
|
-
body
|
|
10817
|
+
headers?: { [key: string]: string };
|
|
10818
|
+
statusCode?: number;
|
|
10819
|
+
body?: GetNodesResponseBody;
|
|
10196
10820
|
static names(): { [key: string]: string } {
|
|
10197
10821
|
return {
|
|
10198
10822
|
headers: 'headers',
|
|
@@ -10345,9 +10969,9 @@ export class GetNotifyMeResponseBody extends $tea.Model {
|
|
|
10345
10969
|
}
|
|
10346
10970
|
|
|
10347
10971
|
export class GetNotifyMeResponse extends $tea.Model {
|
|
10348
|
-
headers
|
|
10349
|
-
statusCode
|
|
10350
|
-
body
|
|
10972
|
+
headers?: { [key: string]: string };
|
|
10973
|
+
statusCode?: number;
|
|
10974
|
+
body?: GetNotifyMeResponseBody;
|
|
10351
10975
|
static names(): { [key: string]: string } {
|
|
10352
10976
|
return {
|
|
10353
10977
|
headers: 'headers',
|
|
@@ -10467,9 +11091,9 @@ export class GetOpenUrlResponseBody extends $tea.Model {
|
|
|
10467
11091
|
}
|
|
10468
11092
|
|
|
10469
11093
|
export class GetOpenUrlResponse extends $tea.Model {
|
|
10470
|
-
headers
|
|
10471
|
-
statusCode
|
|
10472
|
-
body
|
|
11094
|
+
headers?: { [key: string]: string };
|
|
11095
|
+
statusCode?: number;
|
|
11096
|
+
body?: GetOpenUrlResponseBody;
|
|
10473
11097
|
static names(): { [key: string]: string } {
|
|
10474
11098
|
return {
|
|
10475
11099
|
headers: 'headers',
|
|
@@ -10592,9 +11216,9 @@ export class GetOperationRecordsResponseBody extends $tea.Model {
|
|
|
10592
11216
|
}
|
|
10593
11217
|
|
|
10594
11218
|
export class GetOperationRecordsResponse extends $tea.Model {
|
|
10595
|
-
headers
|
|
10596
|
-
statusCode
|
|
10597
|
-
body
|
|
11219
|
+
headers?: { [key: string]: string };
|
|
11220
|
+
statusCode?: number;
|
|
11221
|
+
body?: GetOperationRecordsResponseBody;
|
|
10598
11222
|
static names(): { [key: string]: string } {
|
|
10599
11223
|
return {
|
|
10600
11224
|
headers: 'headers',
|
|
@@ -10759,9 +11383,9 @@ export class GetProcessDefinitionResponseBody extends $tea.Model {
|
|
|
10759
11383
|
}
|
|
10760
11384
|
|
|
10761
11385
|
export class GetProcessDefinitionResponse extends $tea.Model {
|
|
10762
|
-
headers
|
|
10763
|
-
statusCode
|
|
10764
|
-
body
|
|
11386
|
+
headers?: { [key: string]: string };
|
|
11387
|
+
statusCode?: number;
|
|
11388
|
+
body?: GetProcessDefinitionResponseBody;
|
|
10765
11389
|
static names(): { [key: string]: string } {
|
|
10766
11390
|
return {
|
|
10767
11391
|
headers: 'headers',
|
|
@@ -10921,9 +11545,9 @@ export class GetRangeResponseBody extends $tea.Model {
|
|
|
10921
11545
|
}
|
|
10922
11546
|
|
|
10923
11547
|
export class GetRangeResponse extends $tea.Model {
|
|
10924
|
-
headers
|
|
10925
|
-
statusCode
|
|
10926
|
-
body
|
|
11548
|
+
headers?: { [key: string]: string };
|
|
11549
|
+
statusCode?: number;
|
|
11550
|
+
body?: GetRangeResponseBody;
|
|
10927
11551
|
static names(): { [key: string]: string } {
|
|
10928
11552
|
return {
|
|
10929
11553
|
headers: 'headers',
|
|
@@ -11074,9 +11698,9 @@ export class GetReportTemplateByNameResponseBody extends $tea.Model {
|
|
|
11074
11698
|
}
|
|
11075
11699
|
|
|
11076
11700
|
export class GetReportTemplateByNameResponse extends $tea.Model {
|
|
11077
|
-
headers
|
|
11078
|
-
statusCode
|
|
11079
|
-
body
|
|
11701
|
+
headers?: { [key: string]: string };
|
|
11702
|
+
statusCode?: number;
|
|
11703
|
+
body?: GetReportTemplateByNameResponseBody;
|
|
11080
11704
|
static names(): { [key: string]: string } {
|
|
11081
11705
|
return {
|
|
11082
11706
|
headers: 'headers',
|
|
@@ -11209,9 +11833,9 @@ export class GetReportUnReadCountResponseBody extends $tea.Model {
|
|
|
11209
11833
|
}
|
|
11210
11834
|
|
|
11211
11835
|
export class GetReportUnReadCountResponse extends $tea.Model {
|
|
11212
|
-
headers
|
|
11213
|
-
statusCode
|
|
11214
|
-
body
|
|
11836
|
+
headers?: { [key: string]: string };
|
|
11837
|
+
statusCode?: number;
|
|
11838
|
+
body?: GetReportUnReadCountResponseBody;
|
|
11215
11839
|
static names(): { [key: string]: string } {
|
|
11216
11840
|
return {
|
|
11217
11841
|
headers: 'headers',
|
|
@@ -11337,9 +11961,9 @@ export class GetRunningTasksResponseBody extends $tea.Model {
|
|
|
11337
11961
|
}
|
|
11338
11962
|
|
|
11339
11963
|
export class GetRunningTasksResponse extends $tea.Model {
|
|
11340
|
-
headers
|
|
11341
|
-
statusCode
|
|
11342
|
-
body
|
|
11964
|
+
headers?: { [key: string]: string };
|
|
11965
|
+
statusCode?: number;
|
|
11966
|
+
body?: GetRunningTasksResponseBody;
|
|
11343
11967
|
static names(): { [key: string]: string } {
|
|
11344
11968
|
return {
|
|
11345
11969
|
headers: 'headers',
|
|
@@ -11496,9 +12120,9 @@ export class GetSheetResponseBody extends $tea.Model {
|
|
|
11496
12120
|
}
|
|
11497
12121
|
|
|
11498
12122
|
export class GetSheetResponse extends $tea.Model {
|
|
11499
|
-
headers
|
|
11500
|
-
statusCode
|
|
11501
|
-
body
|
|
12123
|
+
headers?: { [key: string]: string };
|
|
12124
|
+
statusCode?: number;
|
|
12125
|
+
body?: GetSheetResponseBody;
|
|
11502
12126
|
static names(): { [key: string]: string } {
|
|
11503
12127
|
return {
|
|
11504
12128
|
headers: 'headers',
|
|
@@ -11655,9 +12279,9 @@ export class GetSpaceDirectoriesResponseBody extends $tea.Model {
|
|
|
11655
12279
|
}
|
|
11656
12280
|
|
|
11657
12281
|
export class GetSpaceDirectoriesResponse extends $tea.Model {
|
|
11658
|
-
headers
|
|
11659
|
-
statusCode
|
|
11660
|
-
body
|
|
12282
|
+
headers?: { [key: string]: string };
|
|
12283
|
+
statusCode?: number;
|
|
12284
|
+
body?: GetSpaceDirectoriesResponseBody;
|
|
11661
12285
|
static names(): { [key: string]: string } {
|
|
11662
12286
|
return {
|
|
11663
12287
|
headers: 'headers',
|
|
@@ -11780,9 +12404,9 @@ export class GetSubscribedCalendarResponseBody extends $tea.Model {
|
|
|
11780
12404
|
}
|
|
11781
12405
|
|
|
11782
12406
|
export class GetSubscribedCalendarResponse extends $tea.Model {
|
|
11783
|
-
headers
|
|
11784
|
-
statusCode
|
|
11785
|
-
body
|
|
12407
|
+
headers?: { [key: string]: string };
|
|
12408
|
+
statusCode?: number;
|
|
12409
|
+
body?: GetSubscribedCalendarResponseBody;
|
|
11786
12410
|
static names(): { [key: string]: string } {
|
|
11787
12411
|
return {
|
|
11788
12412
|
headers: 'headers',
|
|
@@ -11926,9 +12550,9 @@ export class GetTaskCopiesResponseBody extends $tea.Model {
|
|
|
11926
12550
|
}
|
|
11927
12551
|
|
|
11928
12552
|
export class GetTaskCopiesResponse extends $tea.Model {
|
|
11929
|
-
headers
|
|
11930
|
-
statusCode
|
|
11931
|
-
body
|
|
12553
|
+
headers?: { [key: string]: string };
|
|
12554
|
+
statusCode?: number;
|
|
12555
|
+
body?: GetTaskCopiesResponseBody;
|
|
11932
12556
|
static names(): { [key: string]: string } {
|
|
11933
12557
|
return {
|
|
11934
12558
|
headers: 'headers',
|
|
@@ -12070,9 +12694,9 @@ export class GetTemplateListByUserIdResponseBody extends $tea.Model {
|
|
|
12070
12694
|
}
|
|
12071
12695
|
|
|
12072
12696
|
export class GetTemplateListByUserIdResponse extends $tea.Model {
|
|
12073
|
-
headers
|
|
12074
|
-
statusCode
|
|
12075
|
-
body
|
|
12697
|
+
headers?: { [key: string]: string };
|
|
12698
|
+
statusCode?: number;
|
|
12699
|
+
body?: GetTemplateListByUserIdResponseBody;
|
|
12076
12700
|
static names(): { [key: string]: string } {
|
|
12077
12701
|
return {
|
|
12078
12702
|
headers: 'headers',
|
|
@@ -12298,9 +12922,9 @@ export class GetUserResponseBody extends $tea.Model {
|
|
|
12298
12922
|
}
|
|
12299
12923
|
|
|
12300
12924
|
export class GetUserResponse extends $tea.Model {
|
|
12301
|
-
headers
|
|
12302
|
-
statusCode
|
|
12303
|
-
body
|
|
12925
|
+
headers?: { [key: string]: string };
|
|
12926
|
+
statusCode?: number;
|
|
12927
|
+
body?: GetUserResponseBody;
|
|
12304
12928
|
static names(): { [key: string]: string } {
|
|
12305
12929
|
return {
|
|
12306
12930
|
headers: 'headers',
|
|
@@ -12439,9 +13063,9 @@ export class GetWorkspaceResponseBody extends $tea.Model {
|
|
|
12439
13063
|
}
|
|
12440
13064
|
|
|
12441
13065
|
export class GetWorkspaceResponse extends $tea.Model {
|
|
12442
|
-
headers
|
|
12443
|
-
statusCode
|
|
12444
|
-
body
|
|
13066
|
+
headers?: { [key: string]: string };
|
|
13067
|
+
statusCode?: number;
|
|
13068
|
+
body?: GetWorkspaceResponseBody;
|
|
12445
13069
|
static names(): { [key: string]: string } {
|
|
12446
13070
|
return {
|
|
12447
13071
|
headers: 'headers',
|
|
@@ -12580,9 +13204,9 @@ export class GetWorkspacesResponseBody extends $tea.Model {
|
|
|
12580
13204
|
}
|
|
12581
13205
|
|
|
12582
13206
|
export class GetWorkspacesResponse extends $tea.Model {
|
|
12583
|
-
headers
|
|
12584
|
-
statusCode
|
|
12585
|
-
body
|
|
13207
|
+
headers?: { [key: string]: string };
|
|
13208
|
+
statusCode?: number;
|
|
13209
|
+
body?: GetWorkspacesResponseBody;
|
|
12586
13210
|
static names(): { [key: string]: string } {
|
|
12587
13211
|
return {
|
|
12588
13212
|
headers: 'headers',
|
|
@@ -12772,9 +13396,9 @@ export class GrantHonorResponseBody extends $tea.Model {
|
|
|
12772
13396
|
}
|
|
12773
13397
|
|
|
12774
13398
|
export class GrantHonorResponse extends $tea.Model {
|
|
12775
|
-
headers
|
|
12776
|
-
statusCode
|
|
12777
|
-
body
|
|
13399
|
+
headers?: { [key: string]: string };
|
|
13400
|
+
statusCode?: number;
|
|
13401
|
+
body?: GrantHonorResponseBody;
|
|
12778
13402
|
static names(): { [key: string]: string } {
|
|
12779
13403
|
return {
|
|
12780
13404
|
headers: 'headers',
|
|
@@ -12925,9 +13549,9 @@ export class InsertColumnsBeforeResponseBody extends $tea.Model {
|
|
|
12925
13549
|
}
|
|
12926
13550
|
|
|
12927
13551
|
export class InsertColumnsBeforeResponse extends $tea.Model {
|
|
12928
|
-
headers
|
|
12929
|
-
statusCode
|
|
12930
|
-
body
|
|
13552
|
+
headers?: { [key: string]: string };
|
|
13553
|
+
statusCode?: number;
|
|
13554
|
+
body?: InsertColumnsBeforeResponseBody;
|
|
12931
13555
|
static names(): { [key: string]: string } {
|
|
12932
13556
|
return {
|
|
12933
13557
|
headers: 'headers',
|
|
@@ -13078,9 +13702,9 @@ export class InsertRowsBeforeResponseBody extends $tea.Model {
|
|
|
13078
13702
|
}
|
|
13079
13703
|
|
|
13080
13704
|
export class InsertRowsBeforeResponse extends $tea.Model {
|
|
13081
|
-
headers
|
|
13082
|
-
statusCode
|
|
13083
|
-
body
|
|
13705
|
+
headers?: { [key: string]: string };
|
|
13706
|
+
statusCode?: number;
|
|
13707
|
+
body?: InsertRowsBeforeResponseBody;
|
|
13084
13708
|
static names(): { [key: string]: string } {
|
|
13085
13709
|
return {
|
|
13086
13710
|
headers: 'headers',
|
|
@@ -13219,9 +13843,9 @@ export class InviteUsersResponseBody extends $tea.Model {
|
|
|
13219
13843
|
}
|
|
13220
13844
|
|
|
13221
13845
|
export class InviteUsersResponse extends $tea.Model {
|
|
13222
|
-
headers
|
|
13223
|
-
statusCode
|
|
13224
|
-
body
|
|
13846
|
+
headers?: { [key: string]: string };
|
|
13847
|
+
statusCode?: number;
|
|
13848
|
+
body?: InviteUsersResponseBody;
|
|
13225
13849
|
static names(): { [key: string]: string } {
|
|
13226
13850
|
return {
|
|
13227
13851
|
headers: 'headers',
|
|
@@ -13356,9 +13980,9 @@ export class ListApplicationResponseBody extends $tea.Model {
|
|
|
13356
13980
|
}
|
|
13357
13981
|
|
|
13358
13982
|
export class ListApplicationResponse extends $tea.Model {
|
|
13359
|
-
headers
|
|
13360
|
-
statusCode
|
|
13361
|
-
body
|
|
13983
|
+
headers?: { [key: string]: string };
|
|
13984
|
+
statusCode?: number;
|
|
13985
|
+
body?: ListApplicationResponseBody;
|
|
13362
13986
|
static names(): { [key: string]: string } {
|
|
13363
13987
|
return {
|
|
13364
13988
|
headers: 'headers',
|
|
@@ -13485,9 +14109,9 @@ export class ListCalendarsResponseBody extends $tea.Model {
|
|
|
13485
14109
|
}
|
|
13486
14110
|
|
|
13487
14111
|
export class ListCalendarsResponse extends $tea.Model {
|
|
13488
|
-
headers
|
|
13489
|
-
statusCode
|
|
13490
|
-
body
|
|
14112
|
+
headers?: { [key: string]: string };
|
|
14113
|
+
statusCode?: number;
|
|
14114
|
+
body?: ListCalendarsResponseBody;
|
|
13491
14115
|
static names(): { [key: string]: string } {
|
|
13492
14116
|
return {
|
|
13493
14117
|
headers: 'headers',
|
|
@@ -13631,9 +14255,9 @@ export class ListEventsResponseBody extends $tea.Model {
|
|
|
13631
14255
|
}
|
|
13632
14256
|
|
|
13633
14257
|
export class ListEventsResponse extends $tea.Model {
|
|
13634
|
-
headers
|
|
13635
|
-
statusCode
|
|
13636
|
-
body
|
|
14258
|
+
headers?: { [key: string]: string };
|
|
14259
|
+
statusCode?: number;
|
|
14260
|
+
body?: ListEventsResponseBody;
|
|
13637
14261
|
static names(): { [key: string]: string } {
|
|
13638
14262
|
return {
|
|
13639
14263
|
headers: 'headers',
|
|
@@ -13759,9 +14383,9 @@ export class ListEventsViewResponseBody extends $tea.Model {
|
|
|
13759
14383
|
}
|
|
13760
14384
|
|
|
13761
14385
|
export class ListEventsViewResponse extends $tea.Model {
|
|
13762
|
-
headers
|
|
13763
|
-
statusCode
|
|
13764
|
-
body
|
|
14386
|
+
headers?: { [key: string]: string };
|
|
14387
|
+
statusCode?: number;
|
|
14388
|
+
body?: ListEventsViewResponseBody;
|
|
13765
14389
|
static names(): { [key: string]: string } {
|
|
13766
14390
|
return {
|
|
13767
14391
|
headers: 'headers',
|
|
@@ -13912,9 +14536,9 @@ export class ListFormRemarksResponseBody extends $tea.Model {
|
|
|
13912
14536
|
}
|
|
13913
14537
|
|
|
13914
14538
|
export class ListFormRemarksResponse extends $tea.Model {
|
|
13915
|
-
headers
|
|
13916
|
-
statusCode
|
|
13917
|
-
body
|
|
14539
|
+
headers?: { [key: string]: string };
|
|
14540
|
+
statusCode?: number;
|
|
14541
|
+
body?: ListFormRemarksResponseBody;
|
|
13918
14542
|
static names(): { [key: string]: string } {
|
|
13919
14543
|
return {
|
|
13920
14544
|
headers: 'headers',
|
|
@@ -14037,9 +14661,9 @@ export class ListNavigationByFormTypeResponseBody extends $tea.Model {
|
|
|
14037
14661
|
}
|
|
14038
14662
|
|
|
14039
14663
|
export class ListNavigationByFormTypeResponse extends $tea.Model {
|
|
14040
|
-
headers
|
|
14041
|
-
statusCode
|
|
14042
|
-
body
|
|
14664
|
+
headers?: { [key: string]: string };
|
|
14665
|
+
statusCode?: number;
|
|
14666
|
+
body?: ListNavigationByFormTypeResponseBody;
|
|
14043
14667
|
static names(): { [key: string]: string } {
|
|
14044
14668
|
return {
|
|
14045
14669
|
headers: 'headers',
|
|
@@ -14193,9 +14817,9 @@ export class ListNodesResponseBody extends $tea.Model {
|
|
|
14193
14817
|
}
|
|
14194
14818
|
|
|
14195
14819
|
export class ListNodesResponse extends $tea.Model {
|
|
14196
|
-
headers
|
|
14197
|
-
statusCode
|
|
14198
|
-
body
|
|
14820
|
+
headers?: { [key: string]: string };
|
|
14821
|
+
statusCode?: number;
|
|
14822
|
+
body?: ListNodesResponseBody;
|
|
14199
14823
|
static names(): { [key: string]: string } {
|
|
14200
14824
|
return {
|
|
14201
14825
|
headers: 'headers',
|
|
@@ -14373,9 +14997,9 @@ export class ListReportResponseBody extends $tea.Model {
|
|
|
14373
14997
|
}
|
|
14374
14998
|
|
|
14375
14999
|
export class ListReportResponse extends $tea.Model {
|
|
14376
|
-
headers
|
|
14377
|
-
statusCode
|
|
14378
|
-
body
|
|
15000
|
+
headers?: { [key: string]: string };
|
|
15001
|
+
statusCode?: number;
|
|
15002
|
+
body?: ListReportResponseBody;
|
|
14379
15003
|
static names(): { [key: string]: string } {
|
|
14380
15004
|
return {
|
|
14381
15005
|
headers: 'headers',
|
|
@@ -14513,9 +15137,9 @@ export class ListTableDataByFormInstanceIdTableIdResponseBody extends $tea.Model
|
|
|
14513
15137
|
}
|
|
14514
15138
|
|
|
14515
15139
|
export class ListTableDataByFormInstanceIdTableIdResponse extends $tea.Model {
|
|
14516
|
-
headers
|
|
14517
|
-
statusCode
|
|
14518
|
-
body
|
|
15140
|
+
headers?: { [key: string]: string };
|
|
15141
|
+
statusCode?: number;
|
|
15142
|
+
body?: ListTableDataByFormInstanceIdTableIdResponseBody;
|
|
14519
15143
|
static names(): { [key: string]: string } {
|
|
14520
15144
|
return {
|
|
14521
15145
|
headers: 'headers',
|
|
@@ -14663,9 +15287,9 @@ export class ListTeamsResponseBody extends $tea.Model {
|
|
|
14663
15287
|
}
|
|
14664
15288
|
|
|
14665
15289
|
export class ListTeamsResponse extends $tea.Model {
|
|
14666
|
-
headers
|
|
14667
|
-
statusCode
|
|
14668
|
-
body
|
|
15290
|
+
headers?: { [key: string]: string };
|
|
15291
|
+
statusCode?: number;
|
|
15292
|
+
body?: ListTeamsResponseBody;
|
|
14669
15293
|
static names(): { [key: string]: string } {
|
|
14670
15294
|
return {
|
|
14671
15295
|
headers: 'headers',
|
|
@@ -14825,9 +15449,9 @@ export class ListWorkspacesResponseBody extends $tea.Model {
|
|
|
14825
15449
|
}
|
|
14826
15450
|
|
|
14827
15451
|
export class ListWorkspacesResponse extends $tea.Model {
|
|
14828
|
-
headers
|
|
14829
|
-
statusCode
|
|
14830
|
-
body
|
|
15452
|
+
headers?: { [key: string]: string };
|
|
15453
|
+
statusCode?: number;
|
|
15454
|
+
body?: ListWorkspacesResponseBody;
|
|
14831
15455
|
static names(): { [key: string]: string } {
|
|
14832
15456
|
return {
|
|
14833
15457
|
headers: 'headers',
|
|
@@ -15056,9 +15680,9 @@ export class PatchEventResponseBody extends $tea.Model {
|
|
|
15056
15680
|
}
|
|
15057
15681
|
|
|
15058
15682
|
export class PatchEventResponse extends $tea.Model {
|
|
15059
|
-
headers
|
|
15060
|
-
statusCode
|
|
15061
|
-
body
|
|
15683
|
+
headers?: { [key: string]: string };
|
|
15684
|
+
statusCode?: number;
|
|
15685
|
+
body?: PatchEventResponseBody;
|
|
15062
15686
|
static names(): { [key: string]: string } {
|
|
15063
15687
|
return {
|
|
15064
15688
|
headers: 'headers',
|
|
@@ -15218,9 +15842,9 @@ export class QueryCloudRecordTextResponseBody extends $tea.Model {
|
|
|
15218
15842
|
}
|
|
15219
15843
|
|
|
15220
15844
|
export class QueryCloudRecordTextResponse extends $tea.Model {
|
|
15221
|
-
headers
|
|
15222
|
-
statusCode
|
|
15223
|
-
body
|
|
15845
|
+
headers?: { [key: string]: string };
|
|
15846
|
+
statusCode?: number;
|
|
15847
|
+
body?: QueryCloudRecordTextResponseBody;
|
|
15224
15848
|
static names(): { [key: string]: string } {
|
|
15225
15849
|
return {
|
|
15226
15850
|
headers: 'headers',
|
|
@@ -15353,9 +15977,9 @@ export class QueryCloudRecordVideoResponseBody extends $tea.Model {
|
|
|
15353
15977
|
}
|
|
15354
15978
|
|
|
15355
15979
|
export class QueryCloudRecordVideoResponse extends $tea.Model {
|
|
15356
|
-
headers
|
|
15357
|
-
statusCode
|
|
15358
|
-
body
|
|
15980
|
+
headers?: { [key: string]: string };
|
|
15981
|
+
statusCode?: number;
|
|
15982
|
+
body?: QueryCloudRecordVideoResponseBody;
|
|
15359
15983
|
static names(): { [key: string]: string } {
|
|
15360
15984
|
return {
|
|
15361
15985
|
headers: 'headers',
|
|
@@ -15512,9 +16136,9 @@ export class QueryCloudRecordVideoPlayInfoResponseBody extends $tea.Model {
|
|
|
15512
16136
|
}
|
|
15513
16137
|
|
|
15514
16138
|
export class QueryCloudRecordVideoPlayInfoResponse extends $tea.Model {
|
|
15515
|
-
headers
|
|
15516
|
-
statusCode
|
|
15517
|
-
body
|
|
16139
|
+
headers?: { [key: string]: string };
|
|
16140
|
+
statusCode?: number;
|
|
16141
|
+
body?: QueryCloudRecordVideoPlayInfoResponseBody;
|
|
15518
16142
|
static names(): { [key: string]: string } {
|
|
15519
16143
|
return {
|
|
15520
16144
|
headers: 'headers',
|
|
@@ -15622,9 +16246,9 @@ export class QueryConferenceInfoResponseBody extends $tea.Model {
|
|
|
15622
16246
|
}
|
|
15623
16247
|
|
|
15624
16248
|
export class QueryConferenceInfoResponse extends $tea.Model {
|
|
15625
|
-
headers
|
|
15626
|
-
statusCode
|
|
15627
|
-
body
|
|
16249
|
+
headers?: { [key: string]: string };
|
|
16250
|
+
statusCode?: number;
|
|
16251
|
+
body?: QueryConferenceInfoResponseBody;
|
|
15628
16252
|
static names(): { [key: string]: string } {
|
|
15629
16253
|
return {
|
|
15630
16254
|
headers: 'headers',
|
|
@@ -15775,9 +16399,9 @@ export class QueryConferenceMembersResponseBody extends $tea.Model {
|
|
|
15775
16399
|
}
|
|
15776
16400
|
|
|
15777
16401
|
export class QueryConferenceMembersResponse extends $tea.Model {
|
|
15778
|
-
headers
|
|
15779
|
-
statusCode
|
|
15780
|
-
body
|
|
16402
|
+
headers?: { [key: string]: string };
|
|
16403
|
+
statusCode?: number;
|
|
16404
|
+
body?: QueryConferenceMembersResponseBody;
|
|
15781
16405
|
static names(): { [key: string]: string } {
|
|
15782
16406
|
return {
|
|
15783
16407
|
headers: 'headers',
|
|
@@ -15973,9 +16597,9 @@ export class QueryDentryResponseBody extends $tea.Model {
|
|
|
15973
16597
|
}
|
|
15974
16598
|
|
|
15975
16599
|
export class QueryDentryResponse extends $tea.Model {
|
|
15976
|
-
headers
|
|
15977
|
-
statusCode
|
|
15978
|
-
body
|
|
16600
|
+
headers?: { [key: string]: string };
|
|
16601
|
+
statusCode?: number;
|
|
16602
|
+
body?: QueryDentryResponseBody;
|
|
15979
16603
|
static names(): { [key: string]: string } {
|
|
15980
16604
|
return {
|
|
15981
16605
|
headers: 'headers',
|
|
@@ -16141,9 +16765,9 @@ export class QueryLiveInfoResponseBody extends $tea.Model {
|
|
|
16141
16765
|
}
|
|
16142
16766
|
|
|
16143
16767
|
export class QueryLiveInfoResponse extends $tea.Model {
|
|
16144
|
-
headers
|
|
16145
|
-
statusCode
|
|
16146
|
-
body
|
|
16768
|
+
headers?: { [key: string]: string };
|
|
16769
|
+
statusCode?: number;
|
|
16770
|
+
body?: QueryLiveInfoResponseBody;
|
|
16147
16771
|
static names(): { [key: string]: string } {
|
|
16148
16772
|
return {
|
|
16149
16773
|
headers: 'headers',
|
|
@@ -16297,9 +16921,9 @@ export class QueryLiveWatchDetailResponseBody extends $tea.Model {
|
|
|
16297
16921
|
}
|
|
16298
16922
|
|
|
16299
16923
|
export class QueryLiveWatchDetailResponse extends $tea.Model {
|
|
16300
|
-
headers
|
|
16301
|
-
statusCode
|
|
16302
|
-
body
|
|
16924
|
+
headers?: { [key: string]: string };
|
|
16925
|
+
statusCode?: number;
|
|
16926
|
+
body?: QueryLiveWatchDetailResponseBody;
|
|
16303
16927
|
static names(): { [key: string]: string } {
|
|
16304
16928
|
return {
|
|
16305
16929
|
headers: 'headers',
|
|
@@ -16447,9 +17071,9 @@ export class QueryLiveWatchUserListResponseBody extends $tea.Model {
|
|
|
16447
17071
|
}
|
|
16448
17072
|
|
|
16449
17073
|
export class QueryLiveWatchUserListResponse extends $tea.Model {
|
|
16450
|
-
headers
|
|
16451
|
-
statusCode
|
|
16452
|
-
body
|
|
17074
|
+
headers?: { [key: string]: string };
|
|
17075
|
+
statusCode?: number;
|
|
17076
|
+
body?: QueryLiveWatchUserListResponseBody;
|
|
16453
17077
|
static names(): { [key: string]: string } {
|
|
16454
17078
|
return {
|
|
16455
17079
|
headers: 'headers',
|
|
@@ -16588,9 +17212,9 @@ export class QueryMeetingRoomResponseBody extends $tea.Model {
|
|
|
16588
17212
|
}
|
|
16589
17213
|
|
|
16590
17214
|
export class QueryMeetingRoomResponse extends $tea.Model {
|
|
16591
|
-
headers
|
|
16592
|
-
statusCode
|
|
16593
|
-
body
|
|
17215
|
+
headers?: { [key: string]: string };
|
|
17216
|
+
statusCode?: number;
|
|
17217
|
+
body?: QueryMeetingRoomResponseBody;
|
|
16594
17218
|
static names(): { [key: string]: string } {
|
|
16595
17219
|
return {
|
|
16596
17220
|
headers: 'headers',
|
|
@@ -16729,9 +17353,9 @@ export class QueryMeetingRoomGroupResponseBody extends $tea.Model {
|
|
|
16729
17353
|
}
|
|
16730
17354
|
|
|
16731
17355
|
export class QueryMeetingRoomGroupResponse extends $tea.Model {
|
|
16732
|
-
headers
|
|
16733
|
-
statusCode
|
|
16734
|
-
body
|
|
17356
|
+
headers?: { [key: string]: string };
|
|
17357
|
+
statusCode?: number;
|
|
17358
|
+
body?: QueryMeetingRoomGroupResponseBody;
|
|
16735
17359
|
static names(): { [key: string]: string } {
|
|
16736
17360
|
return {
|
|
16737
17361
|
headers: 'headers',
|
|
@@ -16864,9 +17488,9 @@ export class QueryMeetingRoomGroupListResponseBody extends $tea.Model {
|
|
|
16864
17488
|
}
|
|
16865
17489
|
|
|
16866
17490
|
export class QueryMeetingRoomGroupListResponse extends $tea.Model {
|
|
16867
|
-
headers
|
|
16868
|
-
statusCode
|
|
16869
|
-
body
|
|
17491
|
+
headers?: { [key: string]: string };
|
|
17492
|
+
statusCode?: number;
|
|
17493
|
+
body?: QueryMeetingRoomGroupListResponseBody;
|
|
16870
17494
|
static names(): { [key: string]: string } {
|
|
16871
17495
|
return {
|
|
16872
17496
|
headers: 'headers',
|
|
@@ -17011,9 +17635,9 @@ export class QueryMeetingRoomListResponseBody extends $tea.Model {
|
|
|
17011
17635
|
}
|
|
17012
17636
|
|
|
17013
17637
|
export class QueryMeetingRoomListResponse extends $tea.Model {
|
|
17014
|
-
headers
|
|
17015
|
-
statusCode
|
|
17016
|
-
body
|
|
17638
|
+
headers?: { [key: string]: string };
|
|
17639
|
+
statusCode?: number;
|
|
17640
|
+
body?: QueryMeetingRoomListResponseBody;
|
|
17017
17641
|
static names(): { [key: string]: string } {
|
|
17018
17642
|
return {
|
|
17019
17643
|
headers: 'headers',
|
|
@@ -17161,9 +17785,9 @@ export class QueryOrgHonorsResponseBody extends $tea.Model {
|
|
|
17161
17785
|
}
|
|
17162
17786
|
|
|
17163
17787
|
export class QueryOrgHonorsResponse extends $tea.Model {
|
|
17164
|
-
headers
|
|
17165
|
-
statusCode
|
|
17166
|
-
body
|
|
17788
|
+
headers?: { [key: string]: string };
|
|
17789
|
+
statusCode?: number;
|
|
17790
|
+
body?: QueryOrgHonorsResponseBody;
|
|
17167
17791
|
static names(): { [key: string]: string } {
|
|
17168
17792
|
return {
|
|
17169
17793
|
headers: 'headers',
|
|
@@ -17305,9 +17929,9 @@ export class QueryOrgTodoTasksResponseBody extends $tea.Model {
|
|
|
17305
17929
|
}
|
|
17306
17930
|
|
|
17307
17931
|
export class QueryOrgTodoTasksResponse extends $tea.Model {
|
|
17308
|
-
headers
|
|
17309
|
-
statusCode
|
|
17310
|
-
body
|
|
17932
|
+
headers?: { [key: string]: string };
|
|
17933
|
+
statusCode?: number;
|
|
17934
|
+
body?: QueryOrgTodoTasksResponseBody;
|
|
17311
17935
|
static names(): { [key: string]: string } {
|
|
17312
17936
|
return {
|
|
17313
17937
|
headers: 'headers',
|
|
@@ -17458,9 +18082,9 @@ export class QueryScheduleConferenceResponseBody extends $tea.Model {
|
|
|
17458
18082
|
}
|
|
17459
18083
|
|
|
17460
18084
|
export class QueryScheduleConferenceResponse extends $tea.Model {
|
|
17461
|
-
headers
|
|
17462
|
-
statusCode
|
|
17463
|
-
body
|
|
18085
|
+
headers?: { [key: string]: string };
|
|
18086
|
+
statusCode?: number;
|
|
18087
|
+
body?: QueryScheduleConferenceResponseBody;
|
|
17464
18088
|
static names(): { [key: string]: string } {
|
|
17465
18089
|
return {
|
|
17466
18090
|
headers: 'headers',
|
|
@@ -17614,9 +18238,9 @@ export class QueryUserHonorsResponseBody extends $tea.Model {
|
|
|
17614
18238
|
}
|
|
17615
18239
|
|
|
17616
18240
|
export class QueryUserHonorsResponse extends $tea.Model {
|
|
17617
|
-
headers
|
|
17618
|
-
statusCode
|
|
17619
|
-
body
|
|
18241
|
+
headers?: { [key: string]: string };
|
|
18242
|
+
statusCode?: number;
|
|
18243
|
+
body?: QueryUserHonorsResponseBody;
|
|
17620
18244
|
static names(): { [key: string]: string } {
|
|
17621
18245
|
return {
|
|
17622
18246
|
headers: 'headers',
|
|
@@ -17776,9 +18400,9 @@ export class RecallHonorResponseBody extends $tea.Model {
|
|
|
17776
18400
|
}
|
|
17777
18401
|
|
|
17778
18402
|
export class RecallHonorResponse extends $tea.Model {
|
|
17779
|
-
headers
|
|
17780
|
-
statusCode
|
|
17781
|
-
body
|
|
18403
|
+
headers?: { [key: string]: string };
|
|
18404
|
+
statusCode?: number;
|
|
18405
|
+
body?: RecallHonorResponseBody;
|
|
17782
18406
|
static names(): { [key: string]: string } {
|
|
17783
18407
|
return {
|
|
17784
18408
|
headers: 'headers',
|
|
@@ -17929,9 +18553,9 @@ export class ReceiverListReportResponseBody extends $tea.Model {
|
|
|
17929
18553
|
}
|
|
17930
18554
|
|
|
17931
18555
|
export class ReceiverListReportResponse extends $tea.Model {
|
|
17932
|
-
headers
|
|
17933
|
-
statusCode
|
|
17934
|
-
body
|
|
18556
|
+
headers?: { [key: string]: string };
|
|
18557
|
+
statusCode?: number;
|
|
18558
|
+
body?: ReceiverListReportResponseBody;
|
|
17935
18559
|
static names(): { [key: string]: string } {
|
|
17936
18560
|
return {
|
|
17937
18561
|
headers: 'headers',
|
|
@@ -18063,9 +18687,9 @@ export class RedirectTaskResponseBody extends $tea.Model {
|
|
|
18063
18687
|
}
|
|
18064
18688
|
|
|
18065
18689
|
export class RedirectTaskResponse extends $tea.Model {
|
|
18066
|
-
headers
|
|
18067
|
-
statusCode
|
|
18068
|
-
body
|
|
18690
|
+
headers?: { [key: string]: string };
|
|
18691
|
+
statusCode?: number;
|
|
18692
|
+
body?: RedirectTaskResponseBody;
|
|
18069
18693
|
static names(): { [key: string]: string } {
|
|
18070
18694
|
return {
|
|
18071
18695
|
headers: 'headers',
|
|
@@ -18219,9 +18843,9 @@ export class RemoveAttendeeResponseBody extends $tea.Model {
|
|
|
18219
18843
|
}
|
|
18220
18844
|
|
|
18221
18845
|
export class RemoveAttendeeResponse extends $tea.Model {
|
|
18222
|
-
headers
|
|
18223
|
-
statusCode
|
|
18224
|
-
body
|
|
18846
|
+
headers?: { [key: string]: string };
|
|
18847
|
+
statusCode?: number;
|
|
18848
|
+
body?: RemoveAttendeeResponseBody;
|
|
18225
18849
|
static names(): { [key: string]: string } {
|
|
18226
18850
|
return {
|
|
18227
18851
|
headers: 'headers',
|
|
@@ -18360,9 +18984,9 @@ export class RemoveMeetingRoomsResponseBody extends $tea.Model {
|
|
|
18360
18984
|
}
|
|
18361
18985
|
|
|
18362
18986
|
export class RemoveMeetingRoomsResponse extends $tea.Model {
|
|
18363
|
-
headers
|
|
18364
|
-
statusCode
|
|
18365
|
-
body
|
|
18987
|
+
headers?: { [key: string]: string };
|
|
18988
|
+
statusCode?: number;
|
|
18989
|
+
body?: RemoveMeetingRoomsResponseBody;
|
|
18366
18990
|
static names(): { [key: string]: string } {
|
|
18367
18991
|
return {
|
|
18368
18992
|
headers: 'headers',
|
|
@@ -18507,9 +19131,9 @@ export class SaveContentResponseBody extends $tea.Model {
|
|
|
18507
19131
|
}
|
|
18508
19132
|
|
|
18509
19133
|
export class SaveContentResponse extends $tea.Model {
|
|
18510
|
-
headers
|
|
18511
|
-
statusCode
|
|
18512
|
-
body
|
|
19134
|
+
headers?: { [key: string]: string };
|
|
19135
|
+
statusCode?: number;
|
|
19136
|
+
body?: SaveContentResponseBody;
|
|
18513
19137
|
static names(): { [key: string]: string } {
|
|
18514
19138
|
return {
|
|
18515
19139
|
headers: 'headers',
|
|
@@ -18635,9 +19259,9 @@ export class SaveFormDataResponseBody extends $tea.Model {
|
|
|
18635
19259
|
}
|
|
18636
19260
|
|
|
18637
19261
|
export class SaveFormDataResponse extends $tea.Model {
|
|
18638
|
-
headers
|
|
18639
|
-
statusCode
|
|
18640
|
-
body
|
|
19262
|
+
headers?: { [key: string]: string };
|
|
19263
|
+
statusCode?: number;
|
|
19264
|
+
body?: SaveFormDataResponseBody;
|
|
18641
19265
|
static names(): { [key: string]: string } {
|
|
18642
19266
|
return {
|
|
18643
19267
|
headers: 'headers',
|
|
@@ -18769,9 +19393,9 @@ export class SaveFormRemarkResponseBody extends $tea.Model {
|
|
|
18769
19393
|
}
|
|
18770
19394
|
|
|
18771
19395
|
export class SaveFormRemarkResponse extends $tea.Model {
|
|
18772
|
-
headers
|
|
18773
|
-
statusCode
|
|
18774
|
-
body
|
|
19396
|
+
headers?: { [key: string]: string };
|
|
19397
|
+
statusCode?: number;
|
|
19398
|
+
body?: SaveFormRemarkResponseBody;
|
|
18775
19399
|
static names(): { [key: string]: string } {
|
|
18776
19400
|
return {
|
|
18777
19401
|
headers: 'headers',
|
|
@@ -18915,9 +19539,9 @@ export class SearchEmployeeFieldValuesResponseBody extends $tea.Model {
|
|
|
18915
19539
|
}
|
|
18916
19540
|
|
|
18917
19541
|
export class SearchEmployeeFieldValuesResponse extends $tea.Model {
|
|
18918
|
-
headers
|
|
18919
|
-
statusCode
|
|
18920
|
-
body
|
|
19542
|
+
headers?: { [key: string]: string };
|
|
19543
|
+
statusCode?: number;
|
|
19544
|
+
body?: SearchEmployeeFieldValuesResponseBody;
|
|
18921
19545
|
static names(): { [key: string]: string } {
|
|
18922
19546
|
return {
|
|
18923
19547
|
headers: 'headers',
|
|
@@ -19070,9 +19694,9 @@ export class SearchFormDataIdListResponseBody extends $tea.Model {
|
|
|
19070
19694
|
}
|
|
19071
19695
|
|
|
19072
19696
|
export class SearchFormDataIdListResponse extends $tea.Model {
|
|
19073
|
-
headers
|
|
19074
|
-
statusCode
|
|
19075
|
-
body
|
|
19697
|
+
headers?: { [key: string]: string };
|
|
19698
|
+
statusCode?: number;
|
|
19699
|
+
body?: SearchFormDataIdListResponseBody;
|
|
19076
19700
|
static names(): { [key: string]: string } {
|
|
19077
19701
|
return {
|
|
19078
19702
|
headers: 'headers',
|
|
@@ -19225,9 +19849,9 @@ export class SearchFormDataSecondGenerationResponseBody extends $tea.Model {
|
|
|
19225
19849
|
}
|
|
19226
19850
|
|
|
19227
19851
|
export class SearchFormDataSecondGenerationResponse extends $tea.Model {
|
|
19228
|
-
headers
|
|
19229
|
-
statusCode
|
|
19230
|
-
body
|
|
19852
|
+
headers?: { [key: string]: string };
|
|
19853
|
+
statusCode?: number;
|
|
19854
|
+
body?: SearchFormDataSecondGenerationResponseBody;
|
|
19231
19855
|
static names(): { [key: string]: string } {
|
|
19232
19856
|
return {
|
|
19233
19857
|
headers: 'headers',
|
|
@@ -19380,9 +20004,9 @@ export class SearchFormDataSecondGenerationNoTableFieldResponseBody extends $tea
|
|
|
19380
20004
|
}
|
|
19381
20005
|
|
|
19382
20006
|
export class SearchFormDataSecondGenerationNoTableFieldResponse extends $tea.Model {
|
|
19383
|
-
headers
|
|
19384
|
-
statusCode
|
|
19385
|
-
body
|
|
20007
|
+
headers?: { [key: string]: string };
|
|
20008
|
+
statusCode?: number;
|
|
20009
|
+
body?: SearchFormDataSecondGenerationNoTableFieldResponseBody;
|
|
19386
20010
|
static names(): { [key: string]: string } {
|
|
19387
20011
|
return {
|
|
19388
20012
|
headers: 'headers',
|
|
@@ -19538,9 +20162,9 @@ export class SearchFormDatasResponseBody extends $tea.Model {
|
|
|
19538
20162
|
}
|
|
19539
20163
|
|
|
19540
20164
|
export class SearchFormDatasResponse extends $tea.Model {
|
|
19541
|
-
headers
|
|
19542
|
-
statusCode
|
|
19543
|
-
body
|
|
20165
|
+
headers?: { [key: string]: string };
|
|
20166
|
+
statusCode?: number;
|
|
20167
|
+
body?: SearchFormDatasResponseBody;
|
|
19544
20168
|
static names(): { [key: string]: string } {
|
|
19545
20169
|
return {
|
|
19546
20170
|
headers: 'headers',
|
|
@@ -19694,9 +20318,9 @@ export class SendBannerResponseBody extends $tea.Model {
|
|
|
19694
20318
|
}
|
|
19695
20319
|
|
|
19696
20320
|
export class SendBannerResponse extends $tea.Model {
|
|
19697
|
-
headers
|
|
19698
|
-
statusCode
|
|
19699
|
-
body
|
|
20321
|
+
headers?: { [key: string]: string };
|
|
20322
|
+
statusCode?: number;
|
|
20323
|
+
body?: SendBannerResponseBody;
|
|
19700
20324
|
static names(): { [key: string]: string } {
|
|
19701
20325
|
return {
|
|
19702
20326
|
headers: 'headers',
|
|
@@ -19850,9 +20474,9 @@ export class SendPopupResponseBody extends $tea.Model {
|
|
|
19850
20474
|
}
|
|
19851
20475
|
|
|
19852
20476
|
export class SendPopupResponse extends $tea.Model {
|
|
19853
|
-
headers
|
|
19854
|
-
statusCode
|
|
19855
|
-
body
|
|
20477
|
+
headers?: { [key: string]: string };
|
|
20478
|
+
statusCode?: number;
|
|
20479
|
+
body?: SendPopupResponseBody;
|
|
19856
20480
|
static names(): { [key: string]: string } {
|
|
19857
20481
|
return {
|
|
19858
20482
|
headers: 'headers',
|
|
@@ -20006,9 +20630,9 @@ export class SendSearchShadeResponseBody extends $tea.Model {
|
|
|
20006
20630
|
}
|
|
20007
20631
|
|
|
20008
20632
|
export class SendSearchShadeResponse extends $tea.Model {
|
|
20009
|
-
headers
|
|
20010
|
-
statusCode
|
|
20011
|
-
body
|
|
20633
|
+
headers?: { [key: string]: string };
|
|
20634
|
+
statusCode?: number;
|
|
20635
|
+
body?: SendSearchShadeResponseBody;
|
|
20012
20636
|
static names(): { [key: string]: string } {
|
|
20013
20637
|
return {
|
|
20014
20638
|
headers: 'headers',
|
|
@@ -20165,9 +20789,9 @@ export class SetColumnsVisibilityResponseBody extends $tea.Model {
|
|
|
20165
20789
|
}
|
|
20166
20790
|
|
|
20167
20791
|
export class SetColumnsVisibilityResponse extends $tea.Model {
|
|
20168
|
-
headers
|
|
20169
|
-
statusCode
|
|
20170
|
-
body
|
|
20792
|
+
headers?: { [key: string]: string };
|
|
20793
|
+
statusCode?: number;
|
|
20794
|
+
body?: SetColumnsVisibilityResponseBody;
|
|
20171
20795
|
static names(): { [key: string]: string } {
|
|
20172
20796
|
return {
|
|
20173
20797
|
headers: 'headers',
|
|
@@ -20324,9 +20948,9 @@ export class SetRowsVisibilityResponseBody extends $tea.Model {
|
|
|
20324
20948
|
}
|
|
20325
20949
|
|
|
20326
20950
|
export class SetRowsVisibilityResponse extends $tea.Model {
|
|
20327
|
-
headers
|
|
20328
|
-
statusCode
|
|
20329
|
-
body
|
|
20951
|
+
headers?: { [key: string]: string };
|
|
20952
|
+
statusCode?: number;
|
|
20953
|
+
body?: SetRowsVisibilityResponseBody;
|
|
20330
20954
|
static names(): { [key: string]: string } {
|
|
20331
20955
|
return {
|
|
20332
20956
|
headers: 'headers',
|
|
@@ -20492,9 +21116,9 @@ export class SimpleListReportResponseBody extends $tea.Model {
|
|
|
20492
21116
|
}
|
|
20493
21117
|
|
|
20494
21118
|
export class SimpleListReportResponse extends $tea.Model {
|
|
20495
|
-
headers
|
|
20496
|
-
statusCode
|
|
20497
|
-
body
|
|
21119
|
+
headers?: { [key: string]: string };
|
|
21120
|
+
statusCode?: number;
|
|
21121
|
+
body?: SimpleListReportResponseBody;
|
|
20498
21122
|
static names(): { [key: string]: string } {
|
|
20499
21123
|
return {
|
|
20500
21124
|
headers: 'headers',
|
|
@@ -20639,9 +21263,9 @@ export class StartCloudRecordResponseBody extends $tea.Model {
|
|
|
20639
21263
|
}
|
|
20640
21264
|
|
|
20641
21265
|
export class StartCloudRecordResponse extends $tea.Model {
|
|
20642
|
-
headers
|
|
20643
|
-
statusCode
|
|
20644
|
-
body
|
|
21266
|
+
headers?: { [key: string]: string };
|
|
21267
|
+
statusCode?: number;
|
|
21268
|
+
body?: StartCloudRecordResponseBody;
|
|
20645
21269
|
static names(): { [key: string]: string } {
|
|
20646
21270
|
return {
|
|
20647
21271
|
headers: 'headers',
|
|
@@ -20773,9 +21397,9 @@ export class StartInstanceResponseBody extends $tea.Model {
|
|
|
20773
21397
|
}
|
|
20774
21398
|
|
|
20775
21399
|
export class StartInstanceResponse extends $tea.Model {
|
|
20776
|
-
headers
|
|
20777
|
-
statusCode
|
|
20778
|
-
body
|
|
21400
|
+
headers?: { [key: string]: string };
|
|
21401
|
+
statusCode?: number;
|
|
21402
|
+
body?: StartInstanceResponseBody;
|
|
20779
21403
|
static names(): { [key: string]: string } {
|
|
20780
21404
|
return {
|
|
20781
21405
|
headers: 'headers',
|
|
@@ -20932,9 +21556,9 @@ export class StatisticsListByTypeReportResponseBody extends $tea.Model {
|
|
|
20932
21556
|
}
|
|
20933
21557
|
|
|
20934
21558
|
export class StatisticsListByTypeReportResponse extends $tea.Model {
|
|
20935
|
-
headers
|
|
20936
|
-
statusCode
|
|
20937
|
-
body
|
|
21559
|
+
headers?: { [key: string]: string };
|
|
21560
|
+
statusCode?: number;
|
|
21561
|
+
body?: StatisticsListByTypeReportResponseBody;
|
|
20938
21562
|
static names(): { [key: string]: string } {
|
|
20939
21563
|
return {
|
|
20940
21564
|
headers: 'headers',
|
|
@@ -21076,9 +21700,9 @@ export class StatisticsReportResponseBody extends $tea.Model {
|
|
|
21076
21700
|
}
|
|
21077
21701
|
|
|
21078
21702
|
export class StatisticsReportResponse extends $tea.Model {
|
|
21079
|
-
headers
|
|
21080
|
-
statusCode
|
|
21081
|
-
body
|
|
21703
|
+
headers?: { [key: string]: string };
|
|
21704
|
+
statusCode?: number;
|
|
21705
|
+
body?: StatisticsReportResponseBody;
|
|
21082
21706
|
static names(): { [key: string]: string } {
|
|
21083
21707
|
return {
|
|
21084
21708
|
headers: 'headers',
|
|
@@ -21211,9 +21835,9 @@ export class StopCloudRecordResponseBody extends $tea.Model {
|
|
|
21211
21835
|
}
|
|
21212
21836
|
|
|
21213
21837
|
export class StopCloudRecordResponse extends $tea.Model {
|
|
21214
|
-
headers
|
|
21215
|
-
statusCode
|
|
21216
|
-
body
|
|
21838
|
+
headers?: { [key: string]: string };
|
|
21839
|
+
statusCode?: number;
|
|
21840
|
+
body?: StopCloudRecordResponseBody;
|
|
21217
21841
|
static names(): { [key: string]: string } {
|
|
21218
21842
|
return {
|
|
21219
21843
|
headers: 'headers',
|
|
@@ -21318,9 +21942,9 @@ export class SubscribeCalendarResponseBody extends $tea.Model {
|
|
|
21318
21942
|
}
|
|
21319
21943
|
|
|
21320
21944
|
export class SubscribeCalendarResponse extends $tea.Model {
|
|
21321
|
-
headers
|
|
21322
|
-
statusCode
|
|
21323
|
-
body
|
|
21945
|
+
headers?: { [key: string]: string };
|
|
21946
|
+
statusCode?: number;
|
|
21947
|
+
body?: SubscribeCalendarResponseBody;
|
|
21324
21948
|
static names(): { [key: string]: string } {
|
|
21325
21949
|
return {
|
|
21326
21950
|
headers: 'headers',
|
|
@@ -21440,9 +22064,9 @@ export class TerminateInstanceResponseBody extends $tea.Model {
|
|
|
21440
22064
|
}
|
|
21441
22065
|
|
|
21442
22066
|
export class TerminateInstanceResponse extends $tea.Model {
|
|
21443
|
-
headers
|
|
21444
|
-
statusCode
|
|
21445
|
-
body
|
|
22067
|
+
headers?: { [key: string]: string };
|
|
22068
|
+
statusCode?: number;
|
|
22069
|
+
body?: TerminateInstanceResponseBody;
|
|
21446
22070
|
static names(): { [key: string]: string } {
|
|
21447
22071
|
return {
|
|
21448
22072
|
headers: 'headers',
|
|
@@ -21550,9 +22174,9 @@ export class UnsubscribeCalendarResponseBody extends $tea.Model {
|
|
|
21550
22174
|
}
|
|
21551
22175
|
|
|
21552
22176
|
export class UnsubscribeCalendarResponse extends $tea.Model {
|
|
21553
|
-
headers
|
|
21554
|
-
statusCode
|
|
21555
|
-
body
|
|
22177
|
+
headers?: { [key: string]: string };
|
|
22178
|
+
statusCode?: number;
|
|
22179
|
+
body?: UnsubscribeCalendarResponseBody;
|
|
21556
22180
|
static names(): { [key: string]: string } {
|
|
21557
22181
|
return {
|
|
21558
22182
|
headers: 'headers',
|
|
@@ -21678,9 +22302,9 @@ export class UpdateFormDataResponseBody extends $tea.Model {
|
|
|
21678
22302
|
}
|
|
21679
22303
|
|
|
21680
22304
|
export class UpdateFormDataResponse extends $tea.Model {
|
|
21681
|
-
headers
|
|
21682
|
-
statusCode
|
|
21683
|
-
body
|
|
22305
|
+
headers?: { [key: string]: string };
|
|
22306
|
+
statusCode?: number;
|
|
22307
|
+
body?: UpdateFormDataResponseBody;
|
|
21684
22308
|
static names(): { [key: string]: string } {
|
|
21685
22309
|
return {
|
|
21686
22310
|
headers: 'headers',
|
|
@@ -21803,9 +22427,9 @@ export class UpdateInstanceResponseBody extends $tea.Model {
|
|
|
21803
22427
|
}
|
|
21804
22428
|
|
|
21805
22429
|
export class UpdateInstanceResponse extends $tea.Model {
|
|
21806
|
-
headers
|
|
21807
|
-
statusCode
|
|
21808
|
-
body
|
|
22430
|
+
headers?: { [key: string]: string };
|
|
22431
|
+
statusCode?: number;
|
|
22432
|
+
body?: UpdateInstanceResponseBody;
|
|
21809
22433
|
static names(): { [key: string]: string } {
|
|
21810
22434
|
return {
|
|
21811
22435
|
headers: 'headers',
|
|
@@ -21968,9 +22592,9 @@ export class UpdateLiveResponseBody extends $tea.Model {
|
|
|
21968
22592
|
}
|
|
21969
22593
|
|
|
21970
22594
|
export class UpdateLiveResponse extends $tea.Model {
|
|
21971
|
-
headers
|
|
21972
|
-
statusCode
|
|
21973
|
-
body
|
|
22595
|
+
headers?: { [key: string]: string };
|
|
22596
|
+
statusCode?: number;
|
|
22597
|
+
body?: UpdateLiveResponseBody;
|
|
21974
22598
|
static names(): { [key: string]: string } {
|
|
21975
22599
|
return {
|
|
21976
22600
|
headers: 'headers',
|
|
@@ -22169,9 +22793,9 @@ export class UpdateMeetingRoomResponseBody extends $tea.Model {
|
|
|
22169
22793
|
}
|
|
22170
22794
|
|
|
22171
22795
|
export class UpdateMeetingRoomResponse extends $tea.Model {
|
|
22172
|
-
headers
|
|
22173
|
-
statusCode
|
|
22174
|
-
body
|
|
22796
|
+
headers?: { [key: string]: string };
|
|
22797
|
+
statusCode?: number;
|
|
22798
|
+
body?: UpdateMeetingRoomResponseBody;
|
|
22175
22799
|
static names(): { [key: string]: string } {
|
|
22176
22800
|
return {
|
|
22177
22801
|
headers: 'headers',
|
|
@@ -22310,9 +22934,9 @@ export class UpdateMeetingRoomGroupResponseBody extends $tea.Model {
|
|
|
22310
22934
|
}
|
|
22311
22935
|
|
|
22312
22936
|
export class UpdateMeetingRoomGroupResponse extends $tea.Model {
|
|
22313
|
-
headers
|
|
22314
|
-
statusCode
|
|
22315
|
-
body
|
|
22937
|
+
headers?: { [key: string]: string };
|
|
22938
|
+
statusCode?: number;
|
|
22939
|
+
body?: UpdateMeetingRoomGroupResponseBody;
|
|
22316
22940
|
static names(): { [key: string]: string } {
|
|
22317
22941
|
return {
|
|
22318
22942
|
headers: 'headers',
|
|
@@ -22481,9 +23105,9 @@ export class UpdateRangeResponseBody extends $tea.Model {
|
|
|
22481
23105
|
}
|
|
22482
23106
|
|
|
22483
23107
|
export class UpdateRangeResponse extends $tea.Model {
|
|
22484
|
-
headers
|
|
22485
|
-
statusCode
|
|
22486
|
-
body
|
|
23108
|
+
headers?: { [key: string]: string };
|
|
23109
|
+
statusCode?: number;
|
|
23110
|
+
body?: UpdateRangeResponseBody;
|
|
22487
23111
|
static names(): { [key: string]: string } {
|
|
22488
23112
|
return {
|
|
22489
23113
|
headers: 'headers',
|
|
@@ -22634,9 +23258,9 @@ export class UpdateScheduleConferenceResponseBody extends $tea.Model {
|
|
|
22634
23258
|
}
|
|
22635
23259
|
|
|
22636
23260
|
export class UpdateScheduleConferenceResponse extends $tea.Model {
|
|
22637
|
-
headers
|
|
22638
|
-
statusCode
|
|
22639
|
-
body
|
|
23261
|
+
headers?: { [key: string]: string };
|
|
23262
|
+
statusCode?: number;
|
|
23263
|
+
body?: UpdateScheduleConferenceResponseBody;
|
|
22640
23264
|
static names(): { [key: string]: string } {
|
|
22641
23265
|
return {
|
|
22642
23266
|
headers: 'headers',
|
|
@@ -22796,9 +23420,9 @@ export class UpdateStatusResponseBody extends $tea.Model {
|
|
|
22796
23420
|
}
|
|
22797
23421
|
|
|
22798
23422
|
export class UpdateStatusResponse extends $tea.Model {
|
|
22799
|
-
headers
|
|
22800
|
-
statusCode
|
|
22801
|
-
body
|
|
23423
|
+
headers?: { [key: string]: string };
|
|
23424
|
+
statusCode?: number;
|
|
23425
|
+
body?: UpdateStatusResponseBody;
|
|
22802
23426
|
static names(): { [key: string]: string } {
|
|
22803
23427
|
return {
|
|
22804
23428
|
headers: 'headers',
|
|
@@ -22949,9 +23573,9 @@ export class UpdateSubscribedCalendarsResponseBody extends $tea.Model {
|
|
|
22949
23573
|
}
|
|
22950
23574
|
|
|
22951
23575
|
export class UpdateSubscribedCalendarsResponse extends $tea.Model {
|
|
22952
|
-
headers
|
|
22953
|
-
statusCode
|
|
22954
|
-
body
|
|
23576
|
+
headers?: { [key: string]: string };
|
|
23577
|
+
statusCode?: number;
|
|
23578
|
+
body?: UpdateSubscribedCalendarsResponseBody;
|
|
22955
23579
|
static names(): { [key: string]: string } {
|
|
22956
23580
|
return {
|
|
22957
23581
|
headers: 'headers',
|
|
@@ -23120,9 +23744,9 @@ export class UpdateTodoTaskResponseBody extends $tea.Model {
|
|
|
23120
23744
|
}
|
|
23121
23745
|
|
|
23122
23746
|
export class UpdateTodoTaskResponse extends $tea.Model {
|
|
23123
|
-
headers
|
|
23124
|
-
statusCode
|
|
23125
|
-
body
|
|
23747
|
+
headers?: { [key: string]: string };
|
|
23748
|
+
statusCode?: number;
|
|
23749
|
+
body?: UpdateTodoTaskResponseBody;
|
|
23126
23750
|
static names(): { [key: string]: string } {
|
|
23127
23751
|
return {
|
|
23128
23752
|
headers: 'headers',
|
|
@@ -23267,9 +23891,9 @@ export class UpdateTodoTaskExecutorStatusResponseBody extends $tea.Model {
|
|
|
23267
23891
|
}
|
|
23268
23892
|
|
|
23269
23893
|
export class UpdateTodoTaskExecutorStatusResponse extends $tea.Model {
|
|
23270
|
-
headers
|
|
23271
|
-
statusCode
|
|
23272
|
-
body
|
|
23894
|
+
headers?: { [key: string]: string };
|
|
23895
|
+
statusCode?: number;
|
|
23896
|
+
body?: UpdateTodoTaskExecutorStatusResponseBody;
|
|
23273
23897
|
static names(): { [key: string]: string } {
|
|
23274
23898
|
return {
|
|
23275
23899
|
headers: 'headers',
|
|
@@ -23386,9 +24010,9 @@ export class UpdateUserAvatarResponseBody extends $tea.Model {
|
|
|
23386
24010
|
}
|
|
23387
24011
|
|
|
23388
24012
|
export class UpdateUserAvatarResponse extends $tea.Model {
|
|
23389
|
-
headers
|
|
23390
|
-
statusCode
|
|
23391
|
-
body
|
|
24013
|
+
headers?: { [key: string]: string };
|
|
24014
|
+
statusCode?: number;
|
|
24015
|
+
body?: UpdateUserAvatarResponseBody;
|
|
23392
24016
|
static names(): { [key: string]: string } {
|
|
23393
24017
|
return {
|
|
23394
24018
|
headers: 'headers',
|
|
@@ -23530,9 +24154,9 @@ export class UpdateWorkspaceDocMembersResponseBody extends $tea.Model {
|
|
|
23530
24154
|
}
|
|
23531
24155
|
|
|
23532
24156
|
export class UpdateWorkspaceDocMembersResponse extends $tea.Model {
|
|
23533
|
-
headers
|
|
23534
|
-
statusCode
|
|
23535
|
-
body
|
|
24157
|
+
headers?: { [key: string]: string };
|
|
24158
|
+
statusCode?: number;
|
|
24159
|
+
body?: UpdateWorkspaceDocMembersResponseBody;
|
|
23536
24160
|
static names(): { [key: string]: string } {
|
|
23537
24161
|
return {
|
|
23538
24162
|
headers: 'headers',
|
|
@@ -23668,9 +24292,9 @@ export class UpdateWorkspaceMembersResponseBody extends $tea.Model {
|
|
|
23668
24292
|
}
|
|
23669
24293
|
|
|
23670
24294
|
export class UpdateWorkspaceMembersResponse extends $tea.Model {
|
|
23671
|
-
headers
|
|
23672
|
-
statusCode
|
|
23673
|
-
body
|
|
24295
|
+
headers?: { [key: string]: string };
|
|
24296
|
+
statusCode?: number;
|
|
24297
|
+
body?: UpdateWorkspaceMembersResponseBody;
|
|
23674
24298
|
static names(): { [key: string]: string } {
|
|
23675
24299
|
return {
|
|
23676
24300
|
headers: 'headers',
|
|
@@ -23821,9 +24445,9 @@ export class UploadMediaResponseBody extends $tea.Model {
|
|
|
23821
24445
|
}
|
|
23822
24446
|
|
|
23823
24447
|
export class UploadMediaResponse extends $tea.Model {
|
|
23824
|
-
headers
|
|
23825
|
-
statusCode
|
|
23826
|
-
body
|
|
24448
|
+
headers?: { [key: string]: string };
|
|
24449
|
+
statusCode?: number;
|
|
24450
|
+
body?: UploadMediaResponseBody;
|
|
23827
24451
|
static names(): { [key: string]: string } {
|
|
23828
24452
|
return {
|
|
23829
24453
|
headers: 'headers',
|
|
@@ -23989,9 +24613,9 @@ export class WearOrgHonorResponseBody extends $tea.Model {
|
|
|
23989
24613
|
}
|
|
23990
24614
|
|
|
23991
24615
|
export class WearOrgHonorResponse extends $tea.Model {
|
|
23992
|
-
headers
|
|
23993
|
-
statusCode
|
|
23994
|
-
body
|
|
24616
|
+
headers?: { [key: string]: string };
|
|
24617
|
+
statusCode?: number;
|
|
24618
|
+
body?: WearOrgHonorResponseBody;
|
|
23995
24619
|
static names(): { [key: string]: string } {
|
|
23996
24620
|
return {
|
|
23997
24621
|
headers: 'headers',
|
|
@@ -25804,6 +26428,82 @@ export class CreateScheduleConferenceRequestTenantContext extends $tea.Model {
|
|
|
25804
26428
|
}
|
|
25805
26429
|
}
|
|
25806
26430
|
|
|
26431
|
+
export class CreateSearchDomeHeadersAccountContext extends $tea.Model {
|
|
26432
|
+
userToken?: string;
|
|
26433
|
+
static names(): { [key: string]: string } {
|
|
26434
|
+
return {
|
|
26435
|
+
userToken: 'userToken',
|
|
26436
|
+
};
|
|
26437
|
+
}
|
|
26438
|
+
|
|
26439
|
+
static types(): { [key: string]: any } {
|
|
26440
|
+
return {
|
|
26441
|
+
userToken: 'string',
|
|
26442
|
+
};
|
|
26443
|
+
}
|
|
26444
|
+
|
|
26445
|
+
constructor(map?: { [key: string]: any }) {
|
|
26446
|
+
super(map);
|
|
26447
|
+
}
|
|
26448
|
+
}
|
|
26449
|
+
|
|
26450
|
+
export class CreateSearchDomeRequestTenantContext extends $tea.Model {
|
|
26451
|
+
tenantId?: string;
|
|
26452
|
+
static names(): { [key: string]: string } {
|
|
26453
|
+
return {
|
|
26454
|
+
tenantId: 'tenantId',
|
|
26455
|
+
};
|
|
26456
|
+
}
|
|
26457
|
+
|
|
26458
|
+
static types(): { [key: string]: any } {
|
|
26459
|
+
return {
|
|
26460
|
+
tenantId: 'string',
|
|
26461
|
+
};
|
|
26462
|
+
}
|
|
26463
|
+
|
|
26464
|
+
constructor(map?: { [key: string]: any }) {
|
|
26465
|
+
super(map);
|
|
26466
|
+
}
|
|
26467
|
+
}
|
|
26468
|
+
|
|
26469
|
+
export class CreateSearchKeywordHeadersAccountContext extends $tea.Model {
|
|
26470
|
+
userToken?: string;
|
|
26471
|
+
static names(): { [key: string]: string } {
|
|
26472
|
+
return {
|
|
26473
|
+
userToken: 'userToken',
|
|
26474
|
+
};
|
|
26475
|
+
}
|
|
26476
|
+
|
|
26477
|
+
static types(): { [key: string]: any } {
|
|
26478
|
+
return {
|
|
26479
|
+
userToken: 'string',
|
|
26480
|
+
};
|
|
26481
|
+
}
|
|
26482
|
+
|
|
26483
|
+
constructor(map?: { [key: string]: any }) {
|
|
26484
|
+
super(map);
|
|
26485
|
+
}
|
|
26486
|
+
}
|
|
26487
|
+
|
|
26488
|
+
export class CreateSearchKeywordRequestTenantContext extends $tea.Model {
|
|
26489
|
+
tenantId?: string;
|
|
26490
|
+
static names(): { [key: string]: string } {
|
|
26491
|
+
return {
|
|
26492
|
+
tenantId: 'tenantId',
|
|
26493
|
+
};
|
|
26494
|
+
}
|
|
26495
|
+
|
|
26496
|
+
static types(): { [key: string]: any } {
|
|
26497
|
+
return {
|
|
26498
|
+
tenantId: 'string',
|
|
26499
|
+
};
|
|
26500
|
+
}
|
|
26501
|
+
|
|
26502
|
+
constructor(map?: { [key: string]: any }) {
|
|
26503
|
+
super(map);
|
|
26504
|
+
}
|
|
26505
|
+
}
|
|
26506
|
+
|
|
25807
26507
|
export class CreateSheetHeadersAccountContext extends $tea.Model {
|
|
25808
26508
|
accountId?: string;
|
|
25809
26509
|
static names(): { [key: string]: string } {
|
|
@@ -26981,6 +27681,44 @@ export class GetCorpTasksResponseBodyData extends $tea.Model {
|
|
|
26981
27681
|
}
|
|
26982
27682
|
}
|
|
26983
27683
|
|
|
27684
|
+
export class GetDocContentHeadersAccountContext extends $tea.Model {
|
|
27685
|
+
userToken?: string;
|
|
27686
|
+
static names(): { [key: string]: string } {
|
|
27687
|
+
return {
|
|
27688
|
+
userToken: 'userToken',
|
|
27689
|
+
};
|
|
27690
|
+
}
|
|
27691
|
+
|
|
27692
|
+
static types(): { [key: string]: any } {
|
|
27693
|
+
return {
|
|
27694
|
+
userToken: 'string',
|
|
27695
|
+
};
|
|
27696
|
+
}
|
|
27697
|
+
|
|
27698
|
+
constructor(map?: { [key: string]: any }) {
|
|
27699
|
+
super(map);
|
|
27700
|
+
}
|
|
27701
|
+
}
|
|
27702
|
+
|
|
27703
|
+
export class GetDocContentRequestTenantContext extends $tea.Model {
|
|
27704
|
+
tenantId?: string;
|
|
27705
|
+
static names(): { [key: string]: string } {
|
|
27706
|
+
return {
|
|
27707
|
+
tenantId: 'tenantId',
|
|
27708
|
+
};
|
|
27709
|
+
}
|
|
27710
|
+
|
|
27711
|
+
static types(): { [key: string]: any } {
|
|
27712
|
+
return {
|
|
27713
|
+
tenantId: 'string',
|
|
27714
|
+
};
|
|
27715
|
+
}
|
|
27716
|
+
|
|
27717
|
+
constructor(map?: { [key: string]: any }) {
|
|
27718
|
+
super(map);
|
|
27719
|
+
}
|
|
27720
|
+
}
|
|
27721
|
+
|
|
26984
27722
|
export class GetEventHeadersAccountContext extends $tea.Model {
|
|
26985
27723
|
accountId?: string;
|
|
26986
27724
|
static names(): { [key: string]: string } {
|
|
@@ -28118,6 +28856,44 @@ export class GetInstancesByIdListResponseBodyResult extends $tea.Model {
|
|
|
28118
28856
|
}
|
|
28119
28857
|
}
|
|
28120
28858
|
|
|
28859
|
+
export class GetLiveReplayUrlHeadersAccountContext extends $tea.Model {
|
|
28860
|
+
accountId?: string;
|
|
28861
|
+
static names(): { [key: string]: string } {
|
|
28862
|
+
return {
|
|
28863
|
+
accountId: 'accountId',
|
|
28864
|
+
};
|
|
28865
|
+
}
|
|
28866
|
+
|
|
28867
|
+
static types(): { [key: string]: any } {
|
|
28868
|
+
return {
|
|
28869
|
+
accountId: 'string',
|
|
28870
|
+
};
|
|
28871
|
+
}
|
|
28872
|
+
|
|
28873
|
+
constructor(map?: { [key: string]: any }) {
|
|
28874
|
+
super(map);
|
|
28875
|
+
}
|
|
28876
|
+
}
|
|
28877
|
+
|
|
28878
|
+
export class GetLiveReplayUrlRequestTenantContext extends $tea.Model {
|
|
28879
|
+
tenantId?: string;
|
|
28880
|
+
static names(): { [key: string]: string } {
|
|
28881
|
+
return {
|
|
28882
|
+
tenantId: 'tenantId',
|
|
28883
|
+
};
|
|
28884
|
+
}
|
|
28885
|
+
|
|
28886
|
+
static types(): { [key: string]: any } {
|
|
28887
|
+
return {
|
|
28888
|
+
tenantId: 'string',
|
|
28889
|
+
};
|
|
28890
|
+
}
|
|
28891
|
+
|
|
28892
|
+
constructor(map?: { [key: string]: any }) {
|
|
28893
|
+
super(map);
|
|
28894
|
+
}
|
|
28895
|
+
}
|
|
28896
|
+
|
|
28121
28897
|
export class GetMeCorpSubmissionHeadersAccountContext extends $tea.Model {
|
|
28122
28898
|
accountId?: string;
|
|
28123
28899
|
static names(): { [key: string]: string } {
|
|
@@ -38992,6 +39768,158 @@ export default class Client extends OpenApi {
|
|
|
38992
39768
|
return await this.createScheduleConferenceWithOptions(request, headers, runtime);
|
|
38993
39769
|
}
|
|
38994
39770
|
|
|
39771
|
+
async createSearchDomeWithOptions(tmpReq: CreateSearchDomeRequest, tmpHeader: CreateSearchDomeHeaders, runtime: $Util.RuntimeOptions): Promise<CreateSearchDomeResponse> {
|
|
39772
|
+
Util.validateModel(tmpReq);
|
|
39773
|
+
let request = new CreateSearchDomeShrinkRequest({ });
|
|
39774
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
39775
|
+
let headers = new CreateSearchDomeShrinkHeaders({ });
|
|
39776
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
39777
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
39778
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
39779
|
+
}
|
|
39780
|
+
|
|
39781
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
39782
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
39783
|
+
}
|
|
39784
|
+
|
|
39785
|
+
if (!Util.isUnset(tmpReq.userIdList)) {
|
|
39786
|
+
request.userIdListShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.userIdList, "UserIdList", "json");
|
|
39787
|
+
}
|
|
39788
|
+
|
|
39789
|
+
let body : {[key: string ]: any} = { };
|
|
39790
|
+
if (!Util.isUnset(request.content)) {
|
|
39791
|
+
body["Content"] = request.content;
|
|
39792
|
+
}
|
|
39793
|
+
|
|
39794
|
+
if (!Util.isUnset(request.endTime)) {
|
|
39795
|
+
body["EndTime"] = request.endTime;
|
|
39796
|
+
}
|
|
39797
|
+
|
|
39798
|
+
if (!Util.isUnset(request.resId)) {
|
|
39799
|
+
body["ResId"] = request.resId;
|
|
39800
|
+
}
|
|
39801
|
+
|
|
39802
|
+
if (!Util.isUnset(request.startTime)) {
|
|
39803
|
+
body["StartTime"] = request.startTime;
|
|
39804
|
+
}
|
|
39805
|
+
|
|
39806
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
39807
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
39808
|
+
}
|
|
39809
|
+
|
|
39810
|
+
if (!Util.isUnset(request.userIdListShrink)) {
|
|
39811
|
+
body["UserIdList"] = request.userIdListShrink;
|
|
39812
|
+
}
|
|
39813
|
+
|
|
39814
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
39815
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
39816
|
+
realHeaders = headers.commonHeaders;
|
|
39817
|
+
}
|
|
39818
|
+
|
|
39819
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
39820
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
39821
|
+
}
|
|
39822
|
+
|
|
39823
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
39824
|
+
headers: realHeaders,
|
|
39825
|
+
body: OpenApiUtil.parseToMap(body),
|
|
39826
|
+
});
|
|
39827
|
+
let params = new $OpenApi.Params({
|
|
39828
|
+
action: "CreateSearchDome",
|
|
39829
|
+
version: "2023-04-26",
|
|
39830
|
+
protocol: "HTTPS",
|
|
39831
|
+
pathname: `/dingtalk/v1/watt/createSearchDome`,
|
|
39832
|
+
method: "POST",
|
|
39833
|
+
authType: "AK",
|
|
39834
|
+
style: "ROA",
|
|
39835
|
+
reqBodyType: "formData",
|
|
39836
|
+
bodyType: "json",
|
|
39837
|
+
});
|
|
39838
|
+
return $tea.cast<CreateSearchDomeResponse>(await this.callApi(params, req, runtime), new CreateSearchDomeResponse({}));
|
|
39839
|
+
}
|
|
39840
|
+
|
|
39841
|
+
async createSearchDome(request: CreateSearchDomeRequest): Promise<CreateSearchDomeResponse> {
|
|
39842
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
39843
|
+
let headers = new CreateSearchDomeHeaders({ });
|
|
39844
|
+
return await this.createSearchDomeWithOptions(request, headers, runtime);
|
|
39845
|
+
}
|
|
39846
|
+
|
|
39847
|
+
async createSearchKeywordWithOptions(tmpReq: CreateSearchKeywordRequest, tmpHeader: CreateSearchKeywordHeaders, runtime: $Util.RuntimeOptions): Promise<CreateSearchKeywordResponse> {
|
|
39848
|
+
Util.validateModel(tmpReq);
|
|
39849
|
+
let request = new CreateSearchKeywordShrinkRequest({ });
|
|
39850
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
39851
|
+
let headers = new CreateSearchKeywordShrinkHeaders({ });
|
|
39852
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
39853
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
39854
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
39855
|
+
}
|
|
39856
|
+
|
|
39857
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
39858
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
39859
|
+
}
|
|
39860
|
+
|
|
39861
|
+
if (!Util.isUnset(tmpReq.userIdList)) {
|
|
39862
|
+
request.userIdListShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.userIdList, "UserIdList", "json");
|
|
39863
|
+
}
|
|
39864
|
+
|
|
39865
|
+
let body : {[key: string ]: any} = { };
|
|
39866
|
+
if (!Util.isUnset(request.content)) {
|
|
39867
|
+
body["Content"] = request.content;
|
|
39868
|
+
}
|
|
39869
|
+
|
|
39870
|
+
if (!Util.isUnset(request.endTime)) {
|
|
39871
|
+
body["EndTime"] = request.endTime;
|
|
39872
|
+
}
|
|
39873
|
+
|
|
39874
|
+
if (!Util.isUnset(request.resId)) {
|
|
39875
|
+
body["ResId"] = request.resId;
|
|
39876
|
+
}
|
|
39877
|
+
|
|
39878
|
+
if (!Util.isUnset(request.startTime)) {
|
|
39879
|
+
body["StartTime"] = request.startTime;
|
|
39880
|
+
}
|
|
39881
|
+
|
|
39882
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
39883
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
39884
|
+
}
|
|
39885
|
+
|
|
39886
|
+
if (!Util.isUnset(request.userIdListShrink)) {
|
|
39887
|
+
body["UserIdList"] = request.userIdListShrink;
|
|
39888
|
+
}
|
|
39889
|
+
|
|
39890
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
39891
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
39892
|
+
realHeaders = headers.commonHeaders;
|
|
39893
|
+
}
|
|
39894
|
+
|
|
39895
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
39896
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
39897
|
+
}
|
|
39898
|
+
|
|
39899
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
39900
|
+
headers: realHeaders,
|
|
39901
|
+
body: OpenApiUtil.parseToMap(body),
|
|
39902
|
+
});
|
|
39903
|
+
let params = new $OpenApi.Params({
|
|
39904
|
+
action: "CreateSearchKeyword",
|
|
39905
|
+
version: "2023-04-26",
|
|
39906
|
+
protocol: "HTTPS",
|
|
39907
|
+
pathname: `/dingtalk/v1/watt/createSearchKeyword`,
|
|
39908
|
+
method: "POST",
|
|
39909
|
+
authType: "AK",
|
|
39910
|
+
style: "ROA",
|
|
39911
|
+
reqBodyType: "formData",
|
|
39912
|
+
bodyType: "json",
|
|
39913
|
+
});
|
|
39914
|
+
return $tea.cast<CreateSearchKeywordResponse>(await this.callApi(params, req, runtime), new CreateSearchKeywordResponse({}));
|
|
39915
|
+
}
|
|
39916
|
+
|
|
39917
|
+
async createSearchKeyword(request: CreateSearchKeywordRequest): Promise<CreateSearchKeywordResponse> {
|
|
39918
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
39919
|
+
let headers = new CreateSearchKeywordHeaders({ });
|
|
39920
|
+
return await this.createSearchKeywordWithOptions(request, headers, runtime);
|
|
39921
|
+
}
|
|
39922
|
+
|
|
38995
39923
|
async createSheetWithOptions(tmpReq: CreateSheetRequest, tmpHeader: CreateSheetHeaders, runtime: $Util.RuntimeOptions): Promise<CreateSheetResponse> {
|
|
38996
39924
|
Util.validateModel(tmpReq);
|
|
38997
39925
|
let request = new CreateSheetShrinkRequest({ });
|
|
@@ -40760,6 +41688,66 @@ export default class Client extends OpenApi {
|
|
|
40760
41688
|
return await this.getCorpTasksWithOptions(request, headers, runtime);
|
|
40761
41689
|
}
|
|
40762
41690
|
|
|
41691
|
+
async getDocContentWithOptions(tmpReq: GetDocContentRequest, tmpHeader: GetDocContentHeaders, runtime: $Util.RuntimeOptions): Promise<GetDocContentResponse> {
|
|
41692
|
+
Util.validateModel(tmpReq);
|
|
41693
|
+
let request = new GetDocContentShrinkRequest({ });
|
|
41694
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
41695
|
+
let headers = new GetDocContentShrinkHeaders({ });
|
|
41696
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
41697
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
41698
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
41699
|
+
}
|
|
41700
|
+
|
|
41701
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
41702
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
41703
|
+
}
|
|
41704
|
+
|
|
41705
|
+
let body : {[key: string ]: any} = { };
|
|
41706
|
+
if (!Util.isUnset(request.dentryUuid)) {
|
|
41707
|
+
body["DentryUuid"] = request.dentryUuid;
|
|
41708
|
+
}
|
|
41709
|
+
|
|
41710
|
+
if (!Util.isUnset(request.targetFormat)) {
|
|
41711
|
+
body["TargetFormat"] = request.targetFormat;
|
|
41712
|
+
}
|
|
41713
|
+
|
|
41714
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
41715
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
41716
|
+
}
|
|
41717
|
+
|
|
41718
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
41719
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
41720
|
+
realHeaders = headers.commonHeaders;
|
|
41721
|
+
}
|
|
41722
|
+
|
|
41723
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
41724
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
41725
|
+
}
|
|
41726
|
+
|
|
41727
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
41728
|
+
headers: realHeaders,
|
|
41729
|
+
body: OpenApiUtil.parseToMap(body),
|
|
41730
|
+
});
|
|
41731
|
+
let params = new $OpenApi.Params({
|
|
41732
|
+
action: "GetDocContent",
|
|
41733
|
+
version: "2023-04-26",
|
|
41734
|
+
protocol: "HTTPS",
|
|
41735
|
+
pathname: `/dingtalk/v2/documents/getDocContent`,
|
|
41736
|
+
method: "POST",
|
|
41737
|
+
authType: "AK",
|
|
41738
|
+
style: "ROA",
|
|
41739
|
+
reqBodyType: "formData",
|
|
41740
|
+
bodyType: "json",
|
|
41741
|
+
});
|
|
41742
|
+
return $tea.cast<GetDocContentResponse>(await this.callApi(params, req, runtime), new GetDocContentResponse({}));
|
|
41743
|
+
}
|
|
41744
|
+
|
|
41745
|
+
async getDocContent(request: GetDocContentRequest): Promise<GetDocContentResponse> {
|
|
41746
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
41747
|
+
let headers = new GetDocContentHeaders({ });
|
|
41748
|
+
return await this.getDocContentWithOptions(request, headers, runtime);
|
|
41749
|
+
}
|
|
41750
|
+
|
|
40763
41751
|
async getEventWithOptions(request: GetEventRequest, tmpHeader: GetEventHeaders, runtime: $Util.RuntimeOptions): Promise<GetEventResponse> {
|
|
40764
41752
|
Util.validateModel(request);
|
|
40765
41753
|
let headers = new GetEventShrinkHeaders({ });
|
|
@@ -41372,6 +42360,62 @@ export default class Client extends OpenApi {
|
|
|
41372
42360
|
return await this.getInstancesByIdListWithOptions(request, headers, runtime);
|
|
41373
42361
|
}
|
|
41374
42362
|
|
|
42363
|
+
async getLiveReplayUrlWithOptions(tmpReq: GetLiveReplayUrlRequest, tmpHeader: GetLiveReplayUrlHeaders, runtime: $Util.RuntimeOptions): Promise<GetLiveReplayUrlResponse> {
|
|
42364
|
+
Util.validateModel(tmpReq);
|
|
42365
|
+
let request = new GetLiveReplayUrlShrinkRequest({ });
|
|
42366
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
42367
|
+
let headers = new GetLiveReplayUrlShrinkHeaders({ });
|
|
42368
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
42369
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
42370
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
42371
|
+
}
|
|
42372
|
+
|
|
42373
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
42374
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
42375
|
+
}
|
|
42376
|
+
|
|
42377
|
+
let body : {[key: string ]: any} = { };
|
|
42378
|
+
if (!Util.isUnset(request.liveId)) {
|
|
42379
|
+
body["LiveId"] = request.liveId;
|
|
42380
|
+
}
|
|
42381
|
+
|
|
42382
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
42383
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
42384
|
+
}
|
|
42385
|
+
|
|
42386
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
42387
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
42388
|
+
realHeaders = headers.commonHeaders;
|
|
42389
|
+
}
|
|
42390
|
+
|
|
42391
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
42392
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
42393
|
+
}
|
|
42394
|
+
|
|
42395
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
42396
|
+
headers: realHeaders,
|
|
42397
|
+
body: OpenApiUtil.parseToMap(body),
|
|
42398
|
+
});
|
|
42399
|
+
let params = new $OpenApi.Params({
|
|
42400
|
+
action: "GetLiveReplayUrl",
|
|
42401
|
+
version: "2023-04-26",
|
|
42402
|
+
protocol: "HTTPS",
|
|
42403
|
+
pathname: `/dingtalk/v1/ysp/getLiveReplayUrl`,
|
|
42404
|
+
method: "POST",
|
|
42405
|
+
authType: "AK",
|
|
42406
|
+
style: "ROA",
|
|
42407
|
+
reqBodyType: "formData",
|
|
42408
|
+
bodyType: "json",
|
|
42409
|
+
});
|
|
42410
|
+
return $tea.cast<GetLiveReplayUrlResponse>(await this.callApi(params, req, runtime), new GetLiveReplayUrlResponse({}));
|
|
42411
|
+
}
|
|
42412
|
+
|
|
42413
|
+
async getLiveReplayUrl(request: GetLiveReplayUrlRequest): Promise<GetLiveReplayUrlResponse> {
|
|
42414
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42415
|
+
let headers = new GetLiveReplayUrlHeaders({ });
|
|
42416
|
+
return await this.getLiveReplayUrlWithOptions(request, headers, runtime);
|
|
42417
|
+
}
|
|
42418
|
+
|
|
41375
42419
|
async getMeCorpSubmissionWithOptions(request: GetMeCorpSubmissionRequest, tmpHeader: GetMeCorpSubmissionHeaders, runtime: $Util.RuntimeOptions): Promise<GetMeCorpSubmissionResponse> {
|
|
41376
42420
|
Util.validateModel(request);
|
|
41377
42421
|
let headers = new GetMeCorpSubmissionShrinkHeaders({ });
|