@alicloud/aliding20230426 2.4.2 → 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 +1114 -506
- package/dist/client.js +1117 -12
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +1915 -552
package/dist/client.d.ts
CHANGED
|
@@ -87,11 +87,11 @@ export declare class AddAttendeeResponseBody extends $tea.Model {
|
|
|
87
87
|
});
|
|
88
88
|
}
|
|
89
89
|
export declare class AddAttendeeResponse extends $tea.Model {
|
|
90
|
-
headers
|
|
90
|
+
headers?: {
|
|
91
91
|
[key: string]: string;
|
|
92
92
|
};
|
|
93
|
-
statusCode
|
|
94
|
-
body
|
|
93
|
+
statusCode?: number;
|
|
94
|
+
body?: AddAttendeeResponseBody;
|
|
95
95
|
static names(): {
|
|
96
96
|
[key: string]: string;
|
|
97
97
|
};
|
|
@@ -174,11 +174,11 @@ export declare class AddMeetingRoomsResponseBody extends $tea.Model {
|
|
|
174
174
|
});
|
|
175
175
|
}
|
|
176
176
|
export declare class AddMeetingRoomsResponse extends $tea.Model {
|
|
177
|
-
headers
|
|
177
|
+
headers?: {
|
|
178
178
|
[key: string]: string;
|
|
179
179
|
};
|
|
180
|
-
statusCode
|
|
181
|
-
body
|
|
180
|
+
statusCode?: number;
|
|
181
|
+
body?: AddMeetingRoomsResponseBody;
|
|
182
182
|
static names(): {
|
|
183
183
|
[key: string]: string;
|
|
184
184
|
};
|
|
@@ -246,11 +246,11 @@ export declare class AddScenegroupMemberResponseBody extends $tea.Model {
|
|
|
246
246
|
});
|
|
247
247
|
}
|
|
248
248
|
export declare class AddScenegroupMemberResponse extends $tea.Model {
|
|
249
|
-
headers
|
|
249
|
+
headers?: {
|
|
250
250
|
[key: string]: string;
|
|
251
251
|
};
|
|
252
|
-
statusCode
|
|
253
|
-
body
|
|
252
|
+
statusCode?: number;
|
|
253
|
+
body?: AddScenegroupMemberResponseBody;
|
|
254
254
|
static names(): {
|
|
255
255
|
[key: string]: string;
|
|
256
256
|
};
|
|
@@ -333,11 +333,11 @@ export declare class AddWorkspaceResponseBody extends $tea.Model {
|
|
|
333
333
|
});
|
|
334
334
|
}
|
|
335
335
|
export declare class AddWorkspaceResponse extends $tea.Model {
|
|
336
|
-
headers
|
|
336
|
+
headers?: {
|
|
337
337
|
[key: string]: string;
|
|
338
338
|
};
|
|
339
|
-
statusCode
|
|
340
|
-
body
|
|
339
|
+
statusCode?: number;
|
|
340
|
+
body?: AddWorkspaceResponseBody;
|
|
341
341
|
static names(): {
|
|
342
342
|
[key: string]: string;
|
|
343
343
|
};
|
|
@@ -421,11 +421,11 @@ export declare class AddWorkspaceDocMembersResponseBody extends $tea.Model {
|
|
|
421
421
|
});
|
|
422
422
|
}
|
|
423
423
|
export declare class AddWorkspaceDocMembersResponse extends $tea.Model {
|
|
424
|
-
headers
|
|
424
|
+
headers?: {
|
|
425
425
|
[key: string]: string;
|
|
426
426
|
};
|
|
427
|
-
statusCode
|
|
428
|
-
body
|
|
427
|
+
statusCode?: number;
|
|
428
|
+
body?: AddWorkspaceDocMembersResponseBody;
|
|
429
429
|
static names(): {
|
|
430
430
|
[key: string]: string;
|
|
431
431
|
};
|
|
@@ -508,11 +508,11 @@ export declare class AddWorkspaceMembersResponseBody extends $tea.Model {
|
|
|
508
508
|
});
|
|
509
509
|
}
|
|
510
510
|
export declare class AddWorkspaceMembersResponse extends $tea.Model {
|
|
511
|
-
headers
|
|
511
|
+
headers?: {
|
|
512
512
|
[key: string]: string;
|
|
513
513
|
};
|
|
514
|
-
statusCode
|
|
515
|
-
body
|
|
514
|
+
statusCode?: number;
|
|
515
|
+
body?: AddWorkspaceMembersResponseBody;
|
|
516
516
|
static names(): {
|
|
517
517
|
[key: string]: string;
|
|
518
518
|
};
|
|
@@ -601,11 +601,11 @@ export declare class BatchGetFormDataByIdListResponseBody extends $tea.Model {
|
|
|
601
601
|
});
|
|
602
602
|
}
|
|
603
603
|
export declare class BatchGetFormDataByIdListResponse extends $tea.Model {
|
|
604
|
-
headers
|
|
604
|
+
headers?: {
|
|
605
605
|
[key: string]: string;
|
|
606
606
|
};
|
|
607
|
-
statusCode
|
|
608
|
-
body
|
|
607
|
+
statusCode?: number;
|
|
608
|
+
body?: BatchGetFormDataByIdListResponseBody;
|
|
609
609
|
static names(): {
|
|
610
610
|
[key: string]: string;
|
|
611
611
|
};
|
|
@@ -695,11 +695,11 @@ export declare class BatchRemovalByFormInstanceIdListResponseBody extends $tea.M
|
|
|
695
695
|
});
|
|
696
696
|
}
|
|
697
697
|
export declare class BatchRemovalByFormInstanceIdListResponse extends $tea.Model {
|
|
698
|
-
headers
|
|
698
|
+
headers?: {
|
|
699
699
|
[key: string]: string;
|
|
700
700
|
};
|
|
701
|
-
statusCode
|
|
702
|
-
body
|
|
701
|
+
statusCode?: number;
|
|
702
|
+
body?: BatchRemovalByFormInstanceIdListResponseBody;
|
|
703
703
|
static names(): {
|
|
704
704
|
[key: string]: string;
|
|
705
705
|
};
|
|
@@ -792,11 +792,11 @@ export declare class BatchSaveFormDataResponseBody extends $tea.Model {
|
|
|
792
792
|
});
|
|
793
793
|
}
|
|
794
794
|
export declare class BatchSaveFormDataResponse extends $tea.Model {
|
|
795
|
-
headers
|
|
795
|
+
headers?: {
|
|
796
796
|
[key: string]: string;
|
|
797
797
|
};
|
|
798
|
-
statusCode
|
|
799
|
-
body
|
|
798
|
+
statusCode?: number;
|
|
799
|
+
body?: BatchSaveFormDataResponseBody;
|
|
800
800
|
static names(): {
|
|
801
801
|
[key: string]: string;
|
|
802
802
|
};
|
|
@@ -893,11 +893,11 @@ export declare class BatchUpdateFormDataByInstanceIdResponseBody extends $tea.Mo
|
|
|
893
893
|
});
|
|
894
894
|
}
|
|
895
895
|
export declare class BatchUpdateFormDataByInstanceIdResponse extends $tea.Model {
|
|
896
|
-
headers
|
|
896
|
+
headers?: {
|
|
897
897
|
[key: string]: string;
|
|
898
898
|
};
|
|
899
|
-
statusCode
|
|
900
|
-
body
|
|
899
|
+
statusCode?: number;
|
|
900
|
+
body?: BatchUpdateFormDataByInstanceIdResponseBody;
|
|
901
901
|
static names(): {
|
|
902
902
|
[key: string]: string;
|
|
903
903
|
};
|
|
@@ -994,11 +994,11 @@ export declare class BatchUpdateFormDataByInstanceMapResponseBody extends $tea.M
|
|
|
994
994
|
});
|
|
995
995
|
}
|
|
996
996
|
export declare class BatchUpdateFormDataByInstanceMapResponse extends $tea.Model {
|
|
997
|
-
headers
|
|
997
|
+
headers?: {
|
|
998
998
|
[key: string]: string;
|
|
999
999
|
};
|
|
1000
|
-
statusCode
|
|
1001
|
-
body
|
|
1000
|
+
statusCode?: number;
|
|
1001
|
+
body?: BatchUpdateFormDataByInstanceMapResponseBody;
|
|
1002
1002
|
static names(): {
|
|
1003
1003
|
[key: string]: string;
|
|
1004
1004
|
};
|
|
@@ -1079,11 +1079,11 @@ export declare class CancelScheduleConferenceResponseBody extends $tea.Model {
|
|
|
1079
1079
|
});
|
|
1080
1080
|
}
|
|
1081
1081
|
export declare class CancelScheduleConferenceResponse extends $tea.Model {
|
|
1082
|
-
headers
|
|
1082
|
+
headers?: {
|
|
1083
1083
|
[key: string]: string;
|
|
1084
1084
|
};
|
|
1085
|
-
statusCode
|
|
1086
|
-
body
|
|
1085
|
+
statusCode?: number;
|
|
1086
|
+
body?: CancelScheduleConferenceResponseBody;
|
|
1087
1087
|
static names(): {
|
|
1088
1088
|
[key: string]: string;
|
|
1089
1089
|
};
|
|
@@ -1168,11 +1168,11 @@ export declare class ClearResponseBody extends $tea.Model {
|
|
|
1168
1168
|
});
|
|
1169
1169
|
}
|
|
1170
1170
|
export declare class ClearResponse extends $tea.Model {
|
|
1171
|
-
headers
|
|
1171
|
+
headers?: {
|
|
1172
1172
|
[key: string]: string;
|
|
1173
1173
|
};
|
|
1174
|
-
statusCode
|
|
1175
|
-
body
|
|
1174
|
+
statusCode?: number;
|
|
1175
|
+
body?: ClearResponseBody;
|
|
1176
1176
|
static names(): {
|
|
1177
1177
|
[key: string]: string;
|
|
1178
1178
|
};
|
|
@@ -1257,11 +1257,11 @@ export declare class ClearDataResponseBody extends $tea.Model {
|
|
|
1257
1257
|
});
|
|
1258
1258
|
}
|
|
1259
1259
|
export declare class ClearDataResponse extends $tea.Model {
|
|
1260
|
-
headers
|
|
1260
|
+
headers?: {
|
|
1261
1261
|
[key: string]: string;
|
|
1262
1262
|
};
|
|
1263
|
-
statusCode
|
|
1264
|
-
body
|
|
1263
|
+
statusCode?: number;
|
|
1264
|
+
body?: ClearDataResponseBody;
|
|
1265
1265
|
static names(): {
|
|
1266
1266
|
[key: string]: string;
|
|
1267
1267
|
};
|
|
@@ -1348,11 +1348,11 @@ export declare class CommentListReportResponseBody extends $tea.Model {
|
|
|
1348
1348
|
});
|
|
1349
1349
|
}
|
|
1350
1350
|
export declare class CommentListReportResponse extends $tea.Model {
|
|
1351
|
-
headers
|
|
1351
|
+
headers?: {
|
|
1352
1352
|
[key: string]: string;
|
|
1353
1353
|
};
|
|
1354
|
-
statusCode
|
|
1355
|
-
body
|
|
1354
|
+
statusCode?: number;
|
|
1355
|
+
body?: CommentListReportResponseBody;
|
|
1356
1356
|
static names(): {
|
|
1357
1357
|
[key: string]: string;
|
|
1358
1358
|
};
|
|
@@ -1446,11 +1446,11 @@ export declare class CreateDeliveryPlanResponseBody extends $tea.Model {
|
|
|
1446
1446
|
});
|
|
1447
1447
|
}
|
|
1448
1448
|
export declare class CreateDeliveryPlanResponse extends $tea.Model {
|
|
1449
|
-
headers
|
|
1449
|
+
headers?: {
|
|
1450
1450
|
[key: string]: string;
|
|
1451
1451
|
};
|
|
1452
|
-
statusCode
|
|
1453
|
-
body
|
|
1452
|
+
statusCode?: number;
|
|
1453
|
+
body?: CreateDeliveryPlanResponseBody;
|
|
1454
1454
|
static names(): {
|
|
1455
1455
|
[key: string]: string;
|
|
1456
1456
|
};
|
|
@@ -1569,11 +1569,11 @@ export declare class CreateEventResponseBody extends $tea.Model {
|
|
|
1569
1569
|
});
|
|
1570
1570
|
}
|
|
1571
1571
|
export declare class CreateEventResponse extends $tea.Model {
|
|
1572
|
-
headers
|
|
1572
|
+
headers?: {
|
|
1573
1573
|
[key: string]: string;
|
|
1574
1574
|
};
|
|
1575
|
-
statusCode
|
|
1576
|
-
body
|
|
1575
|
+
statusCode?: number;
|
|
1576
|
+
body?: CreateEventResponseBody;
|
|
1577
1577
|
static names(): {
|
|
1578
1578
|
[key: string]: string;
|
|
1579
1579
|
};
|
|
@@ -1664,11 +1664,11 @@ export declare class CreateLiveResponseBody extends $tea.Model {
|
|
|
1664
1664
|
});
|
|
1665
1665
|
}
|
|
1666
1666
|
export declare class CreateLiveResponse extends $tea.Model {
|
|
1667
|
-
headers
|
|
1667
|
+
headers?: {
|
|
1668
1668
|
[key: string]: string;
|
|
1669
1669
|
};
|
|
1670
|
-
statusCode
|
|
1671
|
-
body
|
|
1670
|
+
statusCode?: number;
|
|
1671
|
+
body?: CreateLiveResponseBody;
|
|
1672
1672
|
static names(): {
|
|
1673
1673
|
[key: string]: string;
|
|
1674
1674
|
};
|
|
@@ -1769,11 +1769,11 @@ export declare class CreateMeetingRoomResponseBody extends $tea.Model {
|
|
|
1769
1769
|
});
|
|
1770
1770
|
}
|
|
1771
1771
|
export declare class CreateMeetingRoomResponse extends $tea.Model {
|
|
1772
|
-
headers
|
|
1772
|
+
headers?: {
|
|
1773
1773
|
[key: string]: string;
|
|
1774
1774
|
};
|
|
1775
|
-
statusCode
|
|
1776
|
-
body
|
|
1775
|
+
statusCode?: number;
|
|
1776
|
+
body?: CreateMeetingRoomResponseBody;
|
|
1777
1777
|
static names(): {
|
|
1778
1778
|
[key: string]: string;
|
|
1779
1779
|
};
|
|
@@ -1856,11 +1856,11 @@ export declare class CreateMeetingRoomGroupResponseBody extends $tea.Model {
|
|
|
1856
1856
|
});
|
|
1857
1857
|
}
|
|
1858
1858
|
export declare class CreateMeetingRoomGroupResponse extends $tea.Model {
|
|
1859
|
-
headers
|
|
1859
|
+
headers?: {
|
|
1860
1860
|
[key: string]: string;
|
|
1861
1861
|
};
|
|
1862
|
-
statusCode
|
|
1863
|
-
body
|
|
1862
|
+
statusCode?: number;
|
|
1863
|
+
body?: CreateMeetingRoomGroupResponseBody;
|
|
1864
1864
|
static names(): {
|
|
1865
1865
|
[key: string]: string;
|
|
1866
1866
|
};
|
|
@@ -1935,11 +1935,11 @@ export declare class CreateOrUpdateFormDataResponseBody extends $tea.Model {
|
|
|
1935
1935
|
});
|
|
1936
1936
|
}
|
|
1937
1937
|
export declare class CreateOrUpdateFormDataResponse extends $tea.Model {
|
|
1938
|
-
headers
|
|
1938
|
+
headers?: {
|
|
1939
1939
|
[key: string]: string;
|
|
1940
1940
|
};
|
|
1941
|
-
statusCode
|
|
1942
|
-
body
|
|
1941
|
+
statusCode?: number;
|
|
1942
|
+
body?: CreateOrUpdateFormDataResponseBody;
|
|
1943
1943
|
static names(): {
|
|
1944
1944
|
[key: string]: string;
|
|
1945
1945
|
};
|
|
@@ -2032,11 +2032,109 @@ export declare class CreateOrgHonorTemplateResponseBody extends $tea.Model {
|
|
|
2032
2032
|
});
|
|
2033
2033
|
}
|
|
2034
2034
|
export declare class CreateOrgHonorTemplateResponse extends $tea.Model {
|
|
2035
|
-
headers
|
|
2035
|
+
headers?: {
|
|
2036
2036
|
[key: string]: string;
|
|
2037
2037
|
};
|
|
2038
|
-
statusCode
|
|
2039
|
-
body
|
|
2038
|
+
statusCode?: number;
|
|
2039
|
+
body?: CreateOrgHonorTemplateResponseBody;
|
|
2040
|
+
static names(): {
|
|
2041
|
+
[key: string]: string;
|
|
2042
|
+
};
|
|
2043
|
+
static types(): {
|
|
2044
|
+
[key: string]: any;
|
|
2045
|
+
};
|
|
2046
|
+
constructor(map?: {
|
|
2047
|
+
[key: string]: any;
|
|
2048
|
+
});
|
|
2049
|
+
}
|
|
2050
|
+
export declare class CreatePersonalTodoTaskHeaders extends $tea.Model {
|
|
2051
|
+
commonHeaders?: {
|
|
2052
|
+
[key: string]: string;
|
|
2053
|
+
};
|
|
2054
|
+
accountContext?: CreatePersonalTodoTaskHeadersAccountContext;
|
|
2055
|
+
static names(): {
|
|
2056
|
+
[key: string]: string;
|
|
2057
|
+
};
|
|
2058
|
+
static types(): {
|
|
2059
|
+
[key: string]: any;
|
|
2060
|
+
};
|
|
2061
|
+
constructor(map?: {
|
|
2062
|
+
[key: string]: any;
|
|
2063
|
+
});
|
|
2064
|
+
}
|
|
2065
|
+
export declare class CreatePersonalTodoTaskShrinkHeaders extends $tea.Model {
|
|
2066
|
+
commonHeaders?: {
|
|
2067
|
+
[key: string]: string;
|
|
2068
|
+
};
|
|
2069
|
+
accountContextShrink?: string;
|
|
2070
|
+
static names(): {
|
|
2071
|
+
[key: string]: string;
|
|
2072
|
+
};
|
|
2073
|
+
static types(): {
|
|
2074
|
+
[key: string]: any;
|
|
2075
|
+
};
|
|
2076
|
+
constructor(map?: {
|
|
2077
|
+
[key: string]: any;
|
|
2078
|
+
});
|
|
2079
|
+
}
|
|
2080
|
+
export declare class CreatePersonalTodoTaskRequest extends $tea.Model {
|
|
2081
|
+
description?: string;
|
|
2082
|
+
dueTime?: number;
|
|
2083
|
+
executorIds?: string[];
|
|
2084
|
+
notifyConfigs?: CreatePersonalTodoTaskRequestNotifyConfigs;
|
|
2085
|
+
participantIds?: string[];
|
|
2086
|
+
subject?: string;
|
|
2087
|
+
tenantContext?: CreatePersonalTodoTaskRequestTenantContext;
|
|
2088
|
+
static names(): {
|
|
2089
|
+
[key: string]: string;
|
|
2090
|
+
};
|
|
2091
|
+
static types(): {
|
|
2092
|
+
[key: string]: any;
|
|
2093
|
+
};
|
|
2094
|
+
constructor(map?: {
|
|
2095
|
+
[key: string]: any;
|
|
2096
|
+
});
|
|
2097
|
+
}
|
|
2098
|
+
export declare class CreatePersonalTodoTaskShrinkRequest extends $tea.Model {
|
|
2099
|
+
description?: string;
|
|
2100
|
+
dueTime?: number;
|
|
2101
|
+
executorIdsShrink?: string;
|
|
2102
|
+
notifyConfigsShrink?: string;
|
|
2103
|
+
participantIdsShrink?: string;
|
|
2104
|
+
subject?: string;
|
|
2105
|
+
tenantContextShrink?: string;
|
|
2106
|
+
static names(): {
|
|
2107
|
+
[key: string]: string;
|
|
2108
|
+
};
|
|
2109
|
+
static types(): {
|
|
2110
|
+
[key: string]: any;
|
|
2111
|
+
};
|
|
2112
|
+
constructor(map?: {
|
|
2113
|
+
[key: string]: any;
|
|
2114
|
+
});
|
|
2115
|
+
}
|
|
2116
|
+
export declare class CreatePersonalTodoTaskResponseBody extends $tea.Model {
|
|
2117
|
+
createdTime?: number;
|
|
2118
|
+
requestId?: string;
|
|
2119
|
+
taskId?: string;
|
|
2120
|
+
vendorRequestId?: string;
|
|
2121
|
+
vendorType?: string;
|
|
2122
|
+
static names(): {
|
|
2123
|
+
[key: string]: string;
|
|
2124
|
+
};
|
|
2125
|
+
static types(): {
|
|
2126
|
+
[key: string]: any;
|
|
2127
|
+
};
|
|
2128
|
+
constructor(map?: {
|
|
2129
|
+
[key: string]: any;
|
|
2130
|
+
});
|
|
2131
|
+
}
|
|
2132
|
+
export declare class CreatePersonalTodoTaskResponse extends $tea.Model {
|
|
2133
|
+
headers?: {
|
|
2134
|
+
[key: string]: string;
|
|
2135
|
+
};
|
|
2136
|
+
statusCode?: number;
|
|
2137
|
+
body?: CreatePersonalTodoTaskResponseBody;
|
|
2040
2138
|
static names(): {
|
|
2041
2139
|
[key: string]: string;
|
|
2042
2140
|
};
|
|
@@ -2127,11 +2225,11 @@ export declare class CreateReportResponseBody extends $tea.Model {
|
|
|
2127
2225
|
});
|
|
2128
2226
|
}
|
|
2129
2227
|
export declare class CreateReportResponse extends $tea.Model {
|
|
2130
|
-
headers
|
|
2228
|
+
headers?: {
|
|
2131
2229
|
[key: string]: string;
|
|
2132
2230
|
};
|
|
2133
|
-
statusCode
|
|
2134
|
-
body
|
|
2231
|
+
statusCode?: number;
|
|
2232
|
+
body?: CreateReportResponseBody;
|
|
2135
2233
|
static names(): {
|
|
2136
2234
|
[key: string]: string;
|
|
2137
2235
|
};
|
|
@@ -2217,11 +2315,11 @@ export declare class CreateScenegroupResponseBody extends $tea.Model {
|
|
|
2217
2315
|
});
|
|
2218
2316
|
}
|
|
2219
2317
|
export declare class CreateScenegroupResponse extends $tea.Model {
|
|
2220
|
-
headers
|
|
2318
|
+
headers?: {
|
|
2221
2319
|
[key: string]: string;
|
|
2222
2320
|
};
|
|
2223
|
-
statusCode
|
|
2224
|
-
body
|
|
2321
|
+
statusCode?: number;
|
|
2322
|
+
body?: CreateScenegroupResponseBody;
|
|
2225
2323
|
static names(): {
|
|
2226
2324
|
[key: string]: string;
|
|
2227
2325
|
};
|
|
@@ -2309,11 +2407,203 @@ export declare class CreateScheduleConferenceResponseBody extends $tea.Model {
|
|
|
2309
2407
|
});
|
|
2310
2408
|
}
|
|
2311
2409
|
export declare class CreateScheduleConferenceResponse extends $tea.Model {
|
|
2312
|
-
headers
|
|
2410
|
+
headers?: {
|
|
2411
|
+
[key: string]: string;
|
|
2412
|
+
};
|
|
2413
|
+
statusCode?: number;
|
|
2414
|
+
body?: CreateScheduleConferenceResponseBody;
|
|
2415
|
+
static names(): {
|
|
2416
|
+
[key: string]: string;
|
|
2417
|
+
};
|
|
2418
|
+
static types(): {
|
|
2419
|
+
[key: string]: any;
|
|
2420
|
+
};
|
|
2421
|
+
constructor(map?: {
|
|
2422
|
+
[key: string]: any;
|
|
2423
|
+
});
|
|
2424
|
+
}
|
|
2425
|
+
export declare class CreateSearchDomeHeaders extends $tea.Model {
|
|
2426
|
+
commonHeaders?: {
|
|
2427
|
+
[key: string]: string;
|
|
2428
|
+
};
|
|
2429
|
+
accountContext?: CreateSearchDomeHeadersAccountContext;
|
|
2430
|
+
static names(): {
|
|
2431
|
+
[key: string]: string;
|
|
2432
|
+
};
|
|
2433
|
+
static types(): {
|
|
2434
|
+
[key: string]: any;
|
|
2435
|
+
};
|
|
2436
|
+
constructor(map?: {
|
|
2437
|
+
[key: string]: any;
|
|
2438
|
+
});
|
|
2439
|
+
}
|
|
2440
|
+
export declare class CreateSearchDomeShrinkHeaders extends $tea.Model {
|
|
2441
|
+
commonHeaders?: {
|
|
2442
|
+
[key: string]: string;
|
|
2443
|
+
};
|
|
2444
|
+
accountContextShrink?: string;
|
|
2445
|
+
static names(): {
|
|
2446
|
+
[key: string]: string;
|
|
2447
|
+
};
|
|
2448
|
+
static types(): {
|
|
2449
|
+
[key: string]: any;
|
|
2450
|
+
};
|
|
2451
|
+
constructor(map?: {
|
|
2452
|
+
[key: string]: any;
|
|
2453
|
+
});
|
|
2454
|
+
}
|
|
2455
|
+
export declare class CreateSearchDomeRequest extends $tea.Model {
|
|
2456
|
+
content?: string;
|
|
2457
|
+
endTime?: number;
|
|
2458
|
+
resId?: string;
|
|
2459
|
+
startTime?: number;
|
|
2460
|
+
tenantContext?: CreateSearchDomeRequestTenantContext;
|
|
2461
|
+
userIdList?: string[];
|
|
2462
|
+
static names(): {
|
|
2463
|
+
[key: string]: string;
|
|
2464
|
+
};
|
|
2465
|
+
static types(): {
|
|
2466
|
+
[key: string]: any;
|
|
2467
|
+
};
|
|
2468
|
+
constructor(map?: {
|
|
2469
|
+
[key: string]: any;
|
|
2470
|
+
});
|
|
2471
|
+
}
|
|
2472
|
+
export declare class CreateSearchDomeShrinkRequest extends $tea.Model {
|
|
2473
|
+
content?: string;
|
|
2474
|
+
endTime?: number;
|
|
2475
|
+
resId?: string;
|
|
2476
|
+
startTime?: number;
|
|
2477
|
+
tenantContextShrink?: string;
|
|
2478
|
+
userIdListShrink?: string;
|
|
2479
|
+
static names(): {
|
|
2480
|
+
[key: string]: string;
|
|
2481
|
+
};
|
|
2482
|
+
static types(): {
|
|
2483
|
+
[key: string]: any;
|
|
2484
|
+
};
|
|
2485
|
+
constructor(map?: {
|
|
2486
|
+
[key: string]: any;
|
|
2487
|
+
});
|
|
2488
|
+
}
|
|
2489
|
+
export declare class CreateSearchDomeResponseBody extends $tea.Model {
|
|
2490
|
+
arguments?: any[];
|
|
2491
|
+
requestId?: string;
|
|
2492
|
+
success?: boolean;
|
|
2493
|
+
vendorRequestId?: string;
|
|
2494
|
+
vendorType?: string;
|
|
2495
|
+
static names(): {
|
|
2496
|
+
[key: string]: string;
|
|
2497
|
+
};
|
|
2498
|
+
static types(): {
|
|
2499
|
+
[key: string]: any;
|
|
2500
|
+
};
|
|
2501
|
+
constructor(map?: {
|
|
2502
|
+
[key: string]: any;
|
|
2503
|
+
});
|
|
2504
|
+
}
|
|
2505
|
+
export declare class CreateSearchDomeResponse extends $tea.Model {
|
|
2506
|
+
headers?: {
|
|
2507
|
+
[key: string]: string;
|
|
2508
|
+
};
|
|
2509
|
+
statusCode?: number;
|
|
2510
|
+
body?: CreateSearchDomeResponseBody;
|
|
2511
|
+
static names(): {
|
|
2512
|
+
[key: string]: string;
|
|
2513
|
+
};
|
|
2514
|
+
static types(): {
|
|
2515
|
+
[key: string]: any;
|
|
2516
|
+
};
|
|
2517
|
+
constructor(map?: {
|
|
2518
|
+
[key: string]: any;
|
|
2519
|
+
});
|
|
2520
|
+
}
|
|
2521
|
+
export declare class CreateSearchKeywordHeaders extends $tea.Model {
|
|
2522
|
+
commonHeaders?: {
|
|
2523
|
+
[key: string]: string;
|
|
2524
|
+
};
|
|
2525
|
+
accountContext?: CreateSearchKeywordHeadersAccountContext;
|
|
2526
|
+
static names(): {
|
|
2527
|
+
[key: string]: string;
|
|
2528
|
+
};
|
|
2529
|
+
static types(): {
|
|
2530
|
+
[key: string]: any;
|
|
2531
|
+
};
|
|
2532
|
+
constructor(map?: {
|
|
2533
|
+
[key: string]: any;
|
|
2534
|
+
});
|
|
2535
|
+
}
|
|
2536
|
+
export declare class CreateSearchKeywordShrinkHeaders extends $tea.Model {
|
|
2537
|
+
commonHeaders?: {
|
|
2313
2538
|
[key: string]: string;
|
|
2314
2539
|
};
|
|
2315
|
-
|
|
2316
|
-
|
|
2540
|
+
accountContextShrink?: string;
|
|
2541
|
+
static names(): {
|
|
2542
|
+
[key: string]: string;
|
|
2543
|
+
};
|
|
2544
|
+
static types(): {
|
|
2545
|
+
[key: string]: any;
|
|
2546
|
+
};
|
|
2547
|
+
constructor(map?: {
|
|
2548
|
+
[key: string]: any;
|
|
2549
|
+
});
|
|
2550
|
+
}
|
|
2551
|
+
export declare class CreateSearchKeywordRequest extends $tea.Model {
|
|
2552
|
+
content?: string;
|
|
2553
|
+
endTime?: number;
|
|
2554
|
+
resId?: string;
|
|
2555
|
+
startTime?: number;
|
|
2556
|
+
tenantContext?: CreateSearchKeywordRequestTenantContext;
|
|
2557
|
+
userIdList?: string[];
|
|
2558
|
+
static names(): {
|
|
2559
|
+
[key: string]: string;
|
|
2560
|
+
};
|
|
2561
|
+
static types(): {
|
|
2562
|
+
[key: string]: any;
|
|
2563
|
+
};
|
|
2564
|
+
constructor(map?: {
|
|
2565
|
+
[key: string]: any;
|
|
2566
|
+
});
|
|
2567
|
+
}
|
|
2568
|
+
export declare class CreateSearchKeywordShrinkRequest extends $tea.Model {
|
|
2569
|
+
content?: string;
|
|
2570
|
+
endTime?: number;
|
|
2571
|
+
resId?: string;
|
|
2572
|
+
startTime?: number;
|
|
2573
|
+
tenantContextShrink?: string;
|
|
2574
|
+
userIdListShrink?: string;
|
|
2575
|
+
static names(): {
|
|
2576
|
+
[key: string]: string;
|
|
2577
|
+
};
|
|
2578
|
+
static types(): {
|
|
2579
|
+
[key: string]: any;
|
|
2580
|
+
};
|
|
2581
|
+
constructor(map?: {
|
|
2582
|
+
[key: string]: any;
|
|
2583
|
+
});
|
|
2584
|
+
}
|
|
2585
|
+
export declare class CreateSearchKeywordResponseBody extends $tea.Model {
|
|
2586
|
+
arguments?: any[];
|
|
2587
|
+
requestId?: string;
|
|
2588
|
+
success?: boolean;
|
|
2589
|
+
vendorRequestId?: string;
|
|
2590
|
+
vendorType?: string;
|
|
2591
|
+
static names(): {
|
|
2592
|
+
[key: string]: string;
|
|
2593
|
+
};
|
|
2594
|
+
static types(): {
|
|
2595
|
+
[key: string]: any;
|
|
2596
|
+
};
|
|
2597
|
+
constructor(map?: {
|
|
2598
|
+
[key: string]: any;
|
|
2599
|
+
});
|
|
2600
|
+
}
|
|
2601
|
+
export declare class CreateSearchKeywordResponse extends $tea.Model {
|
|
2602
|
+
headers?: {
|
|
2603
|
+
[key: string]: string;
|
|
2604
|
+
};
|
|
2605
|
+
statusCode?: number;
|
|
2606
|
+
body?: CreateSearchKeywordResponseBody;
|
|
2317
2607
|
static names(): {
|
|
2318
2608
|
[key: string]: string;
|
|
2319
2609
|
};
|
|
@@ -2398,11 +2688,11 @@ export declare class CreateSheetResponseBody extends $tea.Model {
|
|
|
2398
2688
|
});
|
|
2399
2689
|
}
|
|
2400
2690
|
export declare class CreateSheetResponse extends $tea.Model {
|
|
2401
|
-
headers
|
|
2691
|
+
headers?: {
|
|
2402
2692
|
[key: string]: string;
|
|
2403
2693
|
};
|
|
2404
|
-
statusCode
|
|
2405
|
-
body
|
|
2694
|
+
statusCode?: number;
|
|
2695
|
+
body?: CreateSheetResponseBody;
|
|
2406
2696
|
static names(): {
|
|
2407
2697
|
[key: string]: string;
|
|
2408
2698
|
};
|
|
@@ -2487,11 +2777,11 @@ export declare class CreateSubscribedCalendarResponseBody extends $tea.Model {
|
|
|
2487
2777
|
});
|
|
2488
2778
|
}
|
|
2489
2779
|
export declare class CreateSubscribedCalendarResponse extends $tea.Model {
|
|
2490
|
-
headers
|
|
2780
|
+
headers?: {
|
|
2491
2781
|
[key: string]: string;
|
|
2492
2782
|
};
|
|
2493
|
-
statusCode
|
|
2494
|
-
body
|
|
2783
|
+
statusCode?: number;
|
|
2784
|
+
body?: CreateSubscribedCalendarResponseBody;
|
|
2495
2785
|
static names(): {
|
|
2496
2786
|
[key: string]: string;
|
|
2497
2787
|
};
|
|
@@ -2616,11 +2906,11 @@ export declare class CreateTodoTaskResponseBody extends $tea.Model {
|
|
|
2616
2906
|
});
|
|
2617
2907
|
}
|
|
2618
2908
|
export declare class CreateTodoTaskResponse extends $tea.Model {
|
|
2619
|
-
headers
|
|
2909
|
+
headers?: {
|
|
2620
2910
|
[key: string]: string;
|
|
2621
2911
|
};
|
|
2622
|
-
statusCode
|
|
2623
|
-
body
|
|
2912
|
+
statusCode?: number;
|
|
2913
|
+
body?: CreateTodoTaskResponseBody;
|
|
2624
2914
|
static names(): {
|
|
2625
2915
|
[key: string]: string;
|
|
2626
2916
|
};
|
|
@@ -2708,11 +2998,11 @@ export declare class CreateVideoConferenceResponseBody extends $tea.Model {
|
|
|
2708
2998
|
});
|
|
2709
2999
|
}
|
|
2710
3000
|
export declare class CreateVideoConferenceResponse extends $tea.Model {
|
|
2711
|
-
headers
|
|
3001
|
+
headers?: {
|
|
2712
3002
|
[key: string]: string;
|
|
2713
3003
|
};
|
|
2714
|
-
statusCode
|
|
2715
|
-
body
|
|
3004
|
+
statusCode?: number;
|
|
3005
|
+
body?: CreateVideoConferenceResponseBody;
|
|
2716
3006
|
static names(): {
|
|
2717
3007
|
[key: string]: string;
|
|
2718
3008
|
};
|
|
@@ -2798,11 +3088,11 @@ export declare class CreateWorkspaceResponseBody extends $tea.Model {
|
|
|
2798
3088
|
});
|
|
2799
3089
|
}
|
|
2800
3090
|
export declare class CreateWorkspaceResponse extends $tea.Model {
|
|
2801
|
-
headers
|
|
3091
|
+
headers?: {
|
|
2802
3092
|
[key: string]: string;
|
|
2803
3093
|
};
|
|
2804
|
-
statusCode
|
|
2805
|
-
body
|
|
3094
|
+
statusCode?: number;
|
|
3095
|
+
body?: CreateWorkspaceResponseBody;
|
|
2806
3096
|
static names(): {
|
|
2807
3097
|
[key: string]: string;
|
|
2808
3098
|
};
|
|
@@ -2896,11 +3186,11 @@ export declare class CreateWorkspaceDocResponseBody extends $tea.Model {
|
|
|
2896
3186
|
});
|
|
2897
3187
|
}
|
|
2898
3188
|
export declare class CreateWorkspaceDocResponse extends $tea.Model {
|
|
2899
|
-
headers
|
|
3189
|
+
headers?: {
|
|
2900
3190
|
[key: string]: string;
|
|
2901
3191
|
};
|
|
2902
|
-
statusCode
|
|
2903
|
-
body
|
|
3192
|
+
statusCode?: number;
|
|
3193
|
+
body?: CreateWorkspaceDocResponseBody;
|
|
2904
3194
|
static names(): {
|
|
2905
3195
|
[key: string]: string;
|
|
2906
3196
|
};
|
|
@@ -2987,11 +3277,11 @@ export declare class DeleteColumnsResponseBody extends $tea.Model {
|
|
|
2987
3277
|
});
|
|
2988
3278
|
}
|
|
2989
3279
|
export declare class DeleteColumnsResponse extends $tea.Model {
|
|
2990
|
-
headers
|
|
3280
|
+
headers?: {
|
|
2991
3281
|
[key: string]: string;
|
|
2992
3282
|
};
|
|
2993
|
-
statusCode
|
|
2994
|
-
body
|
|
3283
|
+
statusCode?: number;
|
|
3284
|
+
body?: DeleteColumnsResponseBody;
|
|
2995
3285
|
static names(): {
|
|
2996
3286
|
[key: string]: string;
|
|
2997
3287
|
};
|
|
@@ -3067,11 +3357,11 @@ export declare class DeleteEventResponseBody extends $tea.Model {
|
|
|
3067
3357
|
});
|
|
3068
3358
|
}
|
|
3069
3359
|
export declare class DeleteEventResponse extends $tea.Model {
|
|
3070
|
-
headers
|
|
3360
|
+
headers?: {
|
|
3071
3361
|
[key: string]: string;
|
|
3072
3362
|
};
|
|
3073
|
-
statusCode
|
|
3074
|
-
body
|
|
3363
|
+
statusCode?: number;
|
|
3364
|
+
body?: DeleteEventResponseBody;
|
|
3075
3365
|
static names(): {
|
|
3076
3366
|
[key: string]: string;
|
|
3077
3367
|
};
|
|
@@ -3142,11 +3432,11 @@ export declare class DeleteFormDataResponseBody extends $tea.Model {
|
|
|
3142
3432
|
});
|
|
3143
3433
|
}
|
|
3144
3434
|
export declare class DeleteFormDataResponse extends $tea.Model {
|
|
3145
|
-
headers
|
|
3435
|
+
headers?: {
|
|
3146
3436
|
[key: string]: string;
|
|
3147
3437
|
};
|
|
3148
|
-
statusCode
|
|
3149
|
-
body
|
|
3438
|
+
statusCode?: number;
|
|
3439
|
+
body?: DeleteFormDataResponseBody;
|
|
3150
3440
|
static names(): {
|
|
3151
3441
|
[key: string]: string;
|
|
3152
3442
|
};
|
|
@@ -3217,11 +3507,11 @@ export declare class DeleteInstanceResponseBody extends $tea.Model {
|
|
|
3217
3507
|
});
|
|
3218
3508
|
}
|
|
3219
3509
|
export declare class DeleteInstanceResponse extends $tea.Model {
|
|
3220
|
-
headers
|
|
3510
|
+
headers?: {
|
|
3221
3511
|
[key: string]: string;
|
|
3222
3512
|
};
|
|
3223
|
-
statusCode
|
|
3224
|
-
body
|
|
3513
|
+
statusCode?: number;
|
|
3514
|
+
body?: DeleteInstanceResponseBody;
|
|
3225
3515
|
static names(): {
|
|
3226
3516
|
[key: string]: string;
|
|
3227
3517
|
};
|
|
@@ -3302,11 +3592,11 @@ export declare class DeleteLiveResponseBody extends $tea.Model {
|
|
|
3302
3592
|
});
|
|
3303
3593
|
}
|
|
3304
3594
|
export declare class DeleteLiveResponse extends $tea.Model {
|
|
3305
|
-
headers
|
|
3595
|
+
headers?: {
|
|
3306
3596
|
[key: string]: string;
|
|
3307
3597
|
};
|
|
3308
|
-
statusCode
|
|
3309
|
-
body
|
|
3598
|
+
statusCode?: number;
|
|
3599
|
+
body?: DeleteLiveResponseBody;
|
|
3310
3600
|
static names(): {
|
|
3311
3601
|
[key: string]: string;
|
|
3312
3602
|
};
|
|
@@ -3387,11 +3677,11 @@ export declare class DeleteMeetingRoomResponseBody extends $tea.Model {
|
|
|
3387
3677
|
});
|
|
3388
3678
|
}
|
|
3389
3679
|
export declare class DeleteMeetingRoomResponse extends $tea.Model {
|
|
3390
|
-
headers
|
|
3680
|
+
headers?: {
|
|
3391
3681
|
[key: string]: string;
|
|
3392
3682
|
};
|
|
3393
|
-
statusCode
|
|
3394
|
-
body
|
|
3683
|
+
statusCode?: number;
|
|
3684
|
+
body?: DeleteMeetingRoomResponseBody;
|
|
3395
3685
|
static names(): {
|
|
3396
3686
|
[key: string]: string;
|
|
3397
3687
|
};
|
|
@@ -3472,11 +3762,11 @@ export declare class DeleteMeetingRoomGroupResponseBody extends $tea.Model {
|
|
|
3472
3762
|
});
|
|
3473
3763
|
}
|
|
3474
3764
|
export declare class DeleteMeetingRoomGroupResponse extends $tea.Model {
|
|
3475
|
-
headers
|
|
3765
|
+
headers?: {
|
|
3476
3766
|
[key: string]: string;
|
|
3477
3767
|
};
|
|
3478
|
-
statusCode
|
|
3479
|
-
body
|
|
3768
|
+
statusCode?: number;
|
|
3769
|
+
body?: DeleteMeetingRoomGroupResponseBody;
|
|
3480
3770
|
static names(): {
|
|
3481
3771
|
[key: string]: string;
|
|
3482
3772
|
};
|
|
@@ -3563,11 +3853,11 @@ export declare class DeleteRowsResponseBody extends $tea.Model {
|
|
|
3563
3853
|
});
|
|
3564
3854
|
}
|
|
3565
3855
|
export declare class DeleteRowsResponse extends $tea.Model {
|
|
3566
|
-
headers
|
|
3856
|
+
headers?: {
|
|
3567
3857
|
[key: string]: string;
|
|
3568
3858
|
};
|
|
3569
|
-
statusCode
|
|
3570
|
-
body
|
|
3859
|
+
statusCode?: number;
|
|
3860
|
+
body?: DeleteRowsResponseBody;
|
|
3571
3861
|
static names(): {
|
|
3572
3862
|
[key: string]: string;
|
|
3573
3863
|
};
|
|
@@ -3635,11 +3925,11 @@ export declare class DeleteScenegroupMemberResponseBody extends $tea.Model {
|
|
|
3635
3925
|
});
|
|
3636
3926
|
}
|
|
3637
3927
|
export declare class DeleteScenegroupMemberResponse extends $tea.Model {
|
|
3638
|
-
headers
|
|
3928
|
+
headers?: {
|
|
3639
3929
|
[key: string]: string;
|
|
3640
3930
|
};
|
|
3641
|
-
statusCode
|
|
3642
|
-
body
|
|
3931
|
+
statusCode?: number;
|
|
3932
|
+
body?: DeleteScenegroupMemberResponseBody;
|
|
3643
3933
|
static names(): {
|
|
3644
3934
|
[key: string]: string;
|
|
3645
3935
|
};
|
|
@@ -3722,11 +4012,11 @@ export declare class DeleteSheetResponseBody extends $tea.Model {
|
|
|
3722
4012
|
});
|
|
3723
4013
|
}
|
|
3724
4014
|
export declare class DeleteSheetResponse extends $tea.Model {
|
|
3725
|
-
headers
|
|
4015
|
+
headers?: {
|
|
3726
4016
|
[key: string]: string;
|
|
3727
4017
|
};
|
|
3728
|
-
statusCode
|
|
3729
|
-
body
|
|
4018
|
+
statusCode?: number;
|
|
4019
|
+
body?: DeleteSheetResponseBody;
|
|
3730
4020
|
static names(): {
|
|
3731
4021
|
[key: string]: string;
|
|
3732
4022
|
};
|
|
@@ -3793,11 +4083,11 @@ export declare class DeleteSubscribedCalendarResponseBody extends $tea.Model {
|
|
|
3793
4083
|
});
|
|
3794
4084
|
}
|
|
3795
4085
|
export declare class DeleteSubscribedCalendarResponse extends $tea.Model {
|
|
3796
|
-
headers
|
|
4086
|
+
headers?: {
|
|
3797
4087
|
[key: string]: string;
|
|
3798
4088
|
};
|
|
3799
|
-
statusCode
|
|
3800
|
-
body
|
|
4089
|
+
statusCode?: number;
|
|
4090
|
+
body?: DeleteSubscribedCalendarResponseBody;
|
|
3801
4091
|
static names(): {
|
|
3802
4092
|
[key: string]: string;
|
|
3803
4093
|
};
|
|
@@ -3880,11 +4170,11 @@ export declare class DeleteTodoTaskResponseBody extends $tea.Model {
|
|
|
3880
4170
|
});
|
|
3881
4171
|
}
|
|
3882
4172
|
export declare class DeleteTodoTaskResponse extends $tea.Model {
|
|
3883
|
-
headers
|
|
4173
|
+
headers?: {
|
|
3884
4174
|
[key: string]: string;
|
|
3885
4175
|
};
|
|
3886
|
-
statusCode
|
|
3887
|
-
body
|
|
4176
|
+
statusCode?: number;
|
|
4177
|
+
body?: DeleteTodoTaskResponseBody;
|
|
3888
4178
|
static names(): {
|
|
3889
4179
|
[key: string]: string;
|
|
3890
4180
|
};
|
|
@@ -3968,11 +4258,11 @@ export declare class DeleteWorkspaceDocMembersResponseBody extends $tea.Model {
|
|
|
3968
4258
|
});
|
|
3969
4259
|
}
|
|
3970
4260
|
export declare class DeleteWorkspaceDocMembersResponse extends $tea.Model {
|
|
3971
|
-
headers
|
|
4261
|
+
headers?: {
|
|
3972
4262
|
[key: string]: string;
|
|
3973
4263
|
};
|
|
3974
|
-
statusCode
|
|
3975
|
-
body
|
|
4264
|
+
statusCode?: number;
|
|
4265
|
+
body?: DeleteWorkspaceDocMembersResponseBody;
|
|
3976
4266
|
static names(): {
|
|
3977
4267
|
[key: string]: string;
|
|
3978
4268
|
};
|
|
@@ -4054,11 +4344,11 @@ export declare class DeleteWorkspaceMembersResponseBody extends $tea.Model {
|
|
|
4054
4344
|
});
|
|
4055
4345
|
}
|
|
4056
4346
|
export declare class DeleteWorkspaceMembersResponse extends $tea.Model {
|
|
4057
|
-
headers
|
|
4347
|
+
headers?: {
|
|
4058
4348
|
[key: string]: string;
|
|
4059
4349
|
};
|
|
4060
|
-
statusCode
|
|
4061
|
-
body
|
|
4350
|
+
statusCode?: number;
|
|
4351
|
+
body?: DeleteWorkspaceMembersResponseBody;
|
|
4062
4352
|
static names(): {
|
|
4063
4353
|
[key: string]: string;
|
|
4064
4354
|
};
|
|
@@ -4133,11 +4423,11 @@ export declare class ExecuteBatchTaskResponseBody extends $tea.Model {
|
|
|
4133
4423
|
});
|
|
4134
4424
|
}
|
|
4135
4425
|
export declare class ExecuteBatchTaskResponse extends $tea.Model {
|
|
4136
|
-
headers
|
|
4426
|
+
headers?: {
|
|
4137
4427
|
[key: string]: string;
|
|
4138
4428
|
};
|
|
4139
|
-
statusCode
|
|
4140
|
-
body
|
|
4429
|
+
statusCode?: number;
|
|
4430
|
+
body?: ExecuteBatchTaskResponseBody;
|
|
4141
4431
|
static names(): {
|
|
4142
4432
|
[key: string]: string;
|
|
4143
4433
|
};
|
|
@@ -4212,11 +4502,11 @@ export declare class ExecutePlatformTaskResponseBody extends $tea.Model {
|
|
|
4212
4502
|
});
|
|
4213
4503
|
}
|
|
4214
4504
|
export declare class ExecutePlatformTaskResponse extends $tea.Model {
|
|
4215
|
-
headers
|
|
4505
|
+
headers?: {
|
|
4216
4506
|
[key: string]: string;
|
|
4217
4507
|
};
|
|
4218
|
-
statusCode
|
|
4219
|
-
body
|
|
4508
|
+
statusCode?: number;
|
|
4509
|
+
body?: ExecutePlatformTaskResponseBody;
|
|
4220
4510
|
static names(): {
|
|
4221
4511
|
[key: string]: string;
|
|
4222
4512
|
};
|
|
@@ -4293,11 +4583,11 @@ export declare class ExecuteTaskResponseBody extends $tea.Model {
|
|
|
4293
4583
|
});
|
|
4294
4584
|
}
|
|
4295
4585
|
export declare class ExecuteTaskResponse extends $tea.Model {
|
|
4296
|
-
headers
|
|
4586
|
+
headers?: {
|
|
4297
4587
|
[key: string]: string;
|
|
4298
4588
|
};
|
|
4299
|
-
statusCode
|
|
4300
|
-
body
|
|
4589
|
+
statusCode?: number;
|
|
4590
|
+
body?: ExecuteTaskResponseBody;
|
|
4301
4591
|
static names(): {
|
|
4302
4592
|
[key: string]: string;
|
|
4303
4593
|
};
|
|
@@ -4369,11 +4659,11 @@ export declare class GetActivityListResponseBody extends $tea.Model {
|
|
|
4369
4659
|
});
|
|
4370
4660
|
}
|
|
4371
4661
|
export declare class GetActivityListResponse extends $tea.Model {
|
|
4372
|
-
headers
|
|
4662
|
+
headers?: {
|
|
4373
4663
|
[key: string]: string;
|
|
4374
4664
|
};
|
|
4375
|
-
statusCode
|
|
4376
|
-
body
|
|
4665
|
+
statusCode?: number;
|
|
4666
|
+
body?: GetActivityListResponseBody;
|
|
4377
4667
|
static names(): {
|
|
4378
4668
|
[key: string]: string;
|
|
4379
4669
|
};
|
|
@@ -4440,9 +4730,93 @@ export declare class GetAllSheetsShrinkRequest extends $tea.Model {
|
|
|
4440
4730
|
[key: string]: any;
|
|
4441
4731
|
});
|
|
4442
4732
|
}
|
|
4443
|
-
export declare class GetAllSheetsResponseBody extends $tea.Model {
|
|
4733
|
+
export declare class GetAllSheetsResponseBody extends $tea.Model {
|
|
4734
|
+
requestId?: string;
|
|
4735
|
+
value?: GetAllSheetsResponseBodyValue[];
|
|
4736
|
+
static names(): {
|
|
4737
|
+
[key: string]: string;
|
|
4738
|
+
};
|
|
4739
|
+
static types(): {
|
|
4740
|
+
[key: string]: any;
|
|
4741
|
+
};
|
|
4742
|
+
constructor(map?: {
|
|
4743
|
+
[key: string]: any;
|
|
4744
|
+
});
|
|
4745
|
+
}
|
|
4746
|
+
export declare class GetAllSheetsResponse extends $tea.Model {
|
|
4747
|
+
headers?: {
|
|
4748
|
+
[key: string]: string;
|
|
4749
|
+
};
|
|
4750
|
+
statusCode?: number;
|
|
4751
|
+
body?: GetAllSheetsResponseBody;
|
|
4752
|
+
static names(): {
|
|
4753
|
+
[key: string]: string;
|
|
4754
|
+
};
|
|
4755
|
+
static types(): {
|
|
4756
|
+
[key: string]: any;
|
|
4757
|
+
};
|
|
4758
|
+
constructor(map?: {
|
|
4759
|
+
[key: string]: any;
|
|
4760
|
+
});
|
|
4761
|
+
}
|
|
4762
|
+
export declare class GetCorpAccomplishmentTasksHeaders extends $tea.Model {
|
|
4763
|
+
commonHeaders?: {
|
|
4764
|
+
[key: string]: string;
|
|
4765
|
+
};
|
|
4766
|
+
accountContext?: GetCorpAccomplishmentTasksHeadersAccountContext;
|
|
4767
|
+
static names(): {
|
|
4768
|
+
[key: string]: string;
|
|
4769
|
+
};
|
|
4770
|
+
static types(): {
|
|
4771
|
+
[key: string]: any;
|
|
4772
|
+
};
|
|
4773
|
+
constructor(map?: {
|
|
4774
|
+
[key: string]: any;
|
|
4775
|
+
});
|
|
4776
|
+
}
|
|
4777
|
+
export declare class GetCorpAccomplishmentTasksShrinkHeaders extends $tea.Model {
|
|
4778
|
+
commonHeaders?: {
|
|
4779
|
+
[key: string]: string;
|
|
4780
|
+
};
|
|
4781
|
+
accountContextShrink?: string;
|
|
4782
|
+
static names(): {
|
|
4783
|
+
[key: string]: string;
|
|
4784
|
+
};
|
|
4785
|
+
static types(): {
|
|
4786
|
+
[key: string]: any;
|
|
4787
|
+
};
|
|
4788
|
+
constructor(map?: {
|
|
4789
|
+
[key: string]: any;
|
|
4790
|
+
});
|
|
4791
|
+
}
|
|
4792
|
+
export declare class GetCorpAccomplishmentTasksRequest extends $tea.Model {
|
|
4793
|
+
appTypes?: string;
|
|
4794
|
+
corpId?: string;
|
|
4795
|
+
createFromTimeGMT?: number;
|
|
4796
|
+
createToTimeGMT?: number;
|
|
4797
|
+
keyword?: string;
|
|
4798
|
+
language?: string;
|
|
4799
|
+
pageNumber?: number;
|
|
4800
|
+
pageSize?: number;
|
|
4801
|
+
processCodes?: string;
|
|
4802
|
+
token?: string;
|
|
4803
|
+
static names(): {
|
|
4804
|
+
[key: string]: string;
|
|
4805
|
+
};
|
|
4806
|
+
static types(): {
|
|
4807
|
+
[key: string]: any;
|
|
4808
|
+
};
|
|
4809
|
+
constructor(map?: {
|
|
4810
|
+
[key: string]: any;
|
|
4811
|
+
});
|
|
4812
|
+
}
|
|
4813
|
+
export declare class GetCorpAccomplishmentTasksResponseBody extends $tea.Model {
|
|
4814
|
+
data?: GetCorpAccomplishmentTasksResponseBodyData[];
|
|
4815
|
+
pageNumber?: number;
|
|
4444
4816
|
requestId?: string;
|
|
4445
|
-
|
|
4817
|
+
totalCount?: number;
|
|
4818
|
+
vendorRequestId?: string;
|
|
4819
|
+
vendorType?: string;
|
|
4446
4820
|
static names(): {
|
|
4447
4821
|
[key: string]: string;
|
|
4448
4822
|
};
|
|
@@ -4453,12 +4827,12 @@ export declare class GetAllSheetsResponseBody extends $tea.Model {
|
|
|
4453
4827
|
[key: string]: any;
|
|
4454
4828
|
});
|
|
4455
4829
|
}
|
|
4456
|
-
export declare class
|
|
4457
|
-
headers
|
|
4830
|
+
export declare class GetCorpAccomplishmentTasksResponse extends $tea.Model {
|
|
4831
|
+
headers?: {
|
|
4458
4832
|
[key: string]: string;
|
|
4459
4833
|
};
|
|
4460
|
-
statusCode
|
|
4461
|
-
body
|
|
4834
|
+
statusCode?: number;
|
|
4835
|
+
body?: GetCorpAccomplishmentTasksResponseBody;
|
|
4462
4836
|
static names(): {
|
|
4463
4837
|
[key: string]: string;
|
|
4464
4838
|
};
|
|
@@ -4469,11 +4843,11 @@ export declare class GetAllSheetsResponse extends $tea.Model {
|
|
|
4469
4843
|
[key: string]: any;
|
|
4470
4844
|
});
|
|
4471
4845
|
}
|
|
4472
|
-
export declare class
|
|
4846
|
+
export declare class GetCorpTasksHeaders extends $tea.Model {
|
|
4473
4847
|
commonHeaders?: {
|
|
4474
4848
|
[key: string]: string;
|
|
4475
4849
|
};
|
|
4476
|
-
accountContext?:
|
|
4850
|
+
accountContext?: GetCorpTasksHeadersAccountContext;
|
|
4477
4851
|
static names(): {
|
|
4478
4852
|
[key: string]: string;
|
|
4479
4853
|
};
|
|
@@ -4484,7 +4858,7 @@ export declare class GetCorpAccomplishmentTasksHeaders extends $tea.Model {
|
|
|
4484
4858
|
[key: string]: any;
|
|
4485
4859
|
});
|
|
4486
4860
|
}
|
|
4487
|
-
export declare class
|
|
4861
|
+
export declare class GetCorpTasksShrinkHeaders extends $tea.Model {
|
|
4488
4862
|
commonHeaders?: {
|
|
4489
4863
|
[key: string]: string;
|
|
4490
4864
|
};
|
|
@@ -4499,7 +4873,7 @@ export declare class GetCorpAccomplishmentTasksShrinkHeaders extends $tea.Model
|
|
|
4499
4873
|
[key: string]: any;
|
|
4500
4874
|
});
|
|
4501
4875
|
}
|
|
4502
|
-
export declare class
|
|
4876
|
+
export declare class GetCorpTasksRequest extends $tea.Model {
|
|
4503
4877
|
appTypes?: string;
|
|
4504
4878
|
corpId?: string;
|
|
4505
4879
|
createFromTimeGMT?: number;
|
|
@@ -4520,8 +4894,8 @@ export declare class GetCorpAccomplishmentTasksRequest extends $tea.Model {
|
|
|
4520
4894
|
[key: string]: any;
|
|
4521
4895
|
});
|
|
4522
4896
|
}
|
|
4523
|
-
export declare class
|
|
4524
|
-
data?:
|
|
4897
|
+
export declare class GetCorpTasksResponseBody extends $tea.Model {
|
|
4898
|
+
data?: GetCorpTasksResponseBodyData[];
|
|
4525
4899
|
pageNumber?: number;
|
|
4526
4900
|
requestId?: string;
|
|
4527
4901
|
totalCount?: number;
|
|
@@ -4537,12 +4911,12 @@ export declare class GetCorpAccomplishmentTasksResponseBody extends $tea.Model {
|
|
|
4537
4911
|
[key: string]: any;
|
|
4538
4912
|
});
|
|
4539
4913
|
}
|
|
4540
|
-
export declare class
|
|
4541
|
-
headers
|
|
4914
|
+
export declare class GetCorpTasksResponse extends $tea.Model {
|
|
4915
|
+
headers?: {
|
|
4542
4916
|
[key: string]: string;
|
|
4543
4917
|
};
|
|
4544
|
-
statusCode
|
|
4545
|
-
body
|
|
4918
|
+
statusCode?: number;
|
|
4919
|
+
body?: GetCorpTasksResponseBody;
|
|
4546
4920
|
static names(): {
|
|
4547
4921
|
[key: string]: string;
|
|
4548
4922
|
};
|
|
@@ -4553,11 +4927,11 @@ export declare class GetCorpAccomplishmentTasksResponse extends $tea.Model {
|
|
|
4553
4927
|
[key: string]: any;
|
|
4554
4928
|
});
|
|
4555
4929
|
}
|
|
4556
|
-
export declare class
|
|
4930
|
+
export declare class GetDocContentHeaders extends $tea.Model {
|
|
4557
4931
|
commonHeaders?: {
|
|
4558
4932
|
[key: string]: string;
|
|
4559
4933
|
};
|
|
4560
|
-
accountContext?:
|
|
4934
|
+
accountContext?: GetDocContentHeadersAccountContext;
|
|
4561
4935
|
static names(): {
|
|
4562
4936
|
[key: string]: string;
|
|
4563
4937
|
};
|
|
@@ -4568,7 +4942,7 @@ export declare class GetCorpTasksHeaders extends $tea.Model {
|
|
|
4568
4942
|
[key: string]: any;
|
|
4569
4943
|
});
|
|
4570
4944
|
}
|
|
4571
|
-
export declare class
|
|
4945
|
+
export declare class GetDocContentShrinkHeaders extends $tea.Model {
|
|
4572
4946
|
commonHeaders?: {
|
|
4573
4947
|
[key: string]: string;
|
|
4574
4948
|
};
|
|
@@ -4583,17 +4957,10 @@ export declare class GetCorpTasksShrinkHeaders extends $tea.Model {
|
|
|
4583
4957
|
[key: string]: any;
|
|
4584
4958
|
});
|
|
4585
4959
|
}
|
|
4586
|
-
export declare class
|
|
4587
|
-
|
|
4588
|
-
|
|
4589
|
-
|
|
4590
|
-
createToTimeGMT?: number;
|
|
4591
|
-
keyword?: string;
|
|
4592
|
-
language?: string;
|
|
4593
|
-
pageNumber?: number;
|
|
4594
|
-
pageSize?: number;
|
|
4595
|
-
processCodes?: string;
|
|
4596
|
-
token?: string;
|
|
4960
|
+
export declare class GetDocContentRequest extends $tea.Model {
|
|
4961
|
+
dentryUuid?: string;
|
|
4962
|
+
targetFormat?: string;
|
|
4963
|
+
tenantContext?: GetDocContentRequestTenantContext;
|
|
4597
4964
|
static names(): {
|
|
4598
4965
|
[key: string]: string;
|
|
4599
4966
|
};
|
|
@@ -4604,11 +4971,23 @@ export declare class GetCorpTasksRequest extends $tea.Model {
|
|
|
4604
4971
|
[key: string]: any;
|
|
4605
4972
|
});
|
|
4606
4973
|
}
|
|
4607
|
-
export declare class
|
|
4608
|
-
|
|
4609
|
-
|
|
4974
|
+
export declare class GetDocContentShrinkRequest extends $tea.Model {
|
|
4975
|
+
dentryUuid?: string;
|
|
4976
|
+
targetFormat?: string;
|
|
4977
|
+
tenantContextShrink?: string;
|
|
4978
|
+
static names(): {
|
|
4979
|
+
[key: string]: string;
|
|
4980
|
+
};
|
|
4981
|
+
static types(): {
|
|
4982
|
+
[key: string]: any;
|
|
4983
|
+
};
|
|
4984
|
+
constructor(map?: {
|
|
4985
|
+
[key: string]: any;
|
|
4986
|
+
});
|
|
4987
|
+
}
|
|
4988
|
+
export declare class GetDocContentResponseBody extends $tea.Model {
|
|
4610
4989
|
requestId?: string;
|
|
4611
|
-
|
|
4990
|
+
taskId?: number;
|
|
4612
4991
|
vendorRequestId?: string;
|
|
4613
4992
|
vendorType?: string;
|
|
4614
4993
|
static names(): {
|
|
@@ -4621,12 +5000,12 @@ export declare class GetCorpTasksResponseBody extends $tea.Model {
|
|
|
4621
5000
|
[key: string]: any;
|
|
4622
5001
|
});
|
|
4623
5002
|
}
|
|
4624
|
-
export declare class
|
|
4625
|
-
headers
|
|
5003
|
+
export declare class GetDocContentResponse extends $tea.Model {
|
|
5004
|
+
headers?: {
|
|
4626
5005
|
[key: string]: string;
|
|
4627
5006
|
};
|
|
4628
|
-
statusCode
|
|
4629
|
-
body
|
|
5007
|
+
statusCode?: number;
|
|
5008
|
+
body?: GetDocContentResponseBody;
|
|
4630
5009
|
static names(): {
|
|
4631
5010
|
[key: string]: string;
|
|
4632
5011
|
};
|
|
@@ -4715,11 +5094,11 @@ export declare class GetEventResponseBody extends $tea.Model {
|
|
|
4715
5094
|
});
|
|
4716
5095
|
}
|
|
4717
5096
|
export declare class GetEventResponse extends $tea.Model {
|
|
4718
|
-
headers
|
|
5097
|
+
headers?: {
|
|
4719
5098
|
[key: string]: string;
|
|
4720
5099
|
};
|
|
4721
|
-
statusCode
|
|
4722
|
-
body
|
|
5100
|
+
statusCode?: number;
|
|
5101
|
+
body?: GetEventResponseBody;
|
|
4723
5102
|
static names(): {
|
|
4724
5103
|
[key: string]: string;
|
|
4725
5104
|
};
|
|
@@ -4791,11 +5170,11 @@ export declare class GetFieldDefByUuidResponseBody extends $tea.Model {
|
|
|
4791
5170
|
});
|
|
4792
5171
|
}
|
|
4793
5172
|
export declare class GetFieldDefByUuidResponse extends $tea.Model {
|
|
4794
|
-
headers
|
|
5173
|
+
headers?: {
|
|
4795
5174
|
[key: string]: string;
|
|
4796
5175
|
};
|
|
4797
|
-
statusCode
|
|
4798
|
-
body
|
|
5176
|
+
statusCode?: number;
|
|
5177
|
+
body?: GetFieldDefByUuidResponseBody;
|
|
4799
5178
|
static names(): {
|
|
4800
5179
|
[key: string]: string;
|
|
4801
5180
|
};
|
|
@@ -4867,11 +5246,11 @@ export declare class GetFormComponentDefinitionListResponseBody extends $tea.Mod
|
|
|
4867
5246
|
});
|
|
4868
5247
|
}
|
|
4869
5248
|
export declare class GetFormComponentDefinitionListResponse extends $tea.Model {
|
|
4870
|
-
headers
|
|
5249
|
+
headers?: {
|
|
4871
5250
|
[key: string]: string;
|
|
4872
5251
|
};
|
|
4873
|
-
statusCode
|
|
4874
|
-
body
|
|
5252
|
+
statusCode?: number;
|
|
5253
|
+
body?: GetFormComponentDefinitionListResponseBody;
|
|
4875
5254
|
static names(): {
|
|
4876
5255
|
[key: string]: string;
|
|
4877
5256
|
};
|
|
@@ -4948,11 +5327,11 @@ export declare class GetFormDataByIDResponseBody extends $tea.Model {
|
|
|
4948
5327
|
});
|
|
4949
5328
|
}
|
|
4950
5329
|
export declare class GetFormDataByIDResponse extends $tea.Model {
|
|
4951
|
-
headers
|
|
5330
|
+
headers?: {
|
|
4952
5331
|
[key: string]: string;
|
|
4953
5332
|
};
|
|
4954
|
-
statusCode
|
|
4955
|
-
body
|
|
5333
|
+
statusCode?: number;
|
|
5334
|
+
body?: GetFormDataByIDResponseBody;
|
|
4956
5335
|
static names(): {
|
|
4957
5336
|
[key: string]: string;
|
|
4958
5337
|
};
|
|
@@ -5028,11 +5407,11 @@ export declare class GetFormListInAppResponseBody extends $tea.Model {
|
|
|
5028
5407
|
});
|
|
5029
5408
|
}
|
|
5030
5409
|
export declare class GetFormListInAppResponse extends $tea.Model {
|
|
5031
|
-
headers
|
|
5410
|
+
headers?: {
|
|
5032
5411
|
[key: string]: string;
|
|
5033
5412
|
};
|
|
5034
|
-
statusCode
|
|
5035
|
-
body
|
|
5413
|
+
statusCode?: number;
|
|
5414
|
+
body?: GetFormListInAppResponseBody;
|
|
5036
5415
|
static names(): {
|
|
5037
5416
|
[key: string]: string;
|
|
5038
5417
|
};
|
|
@@ -5117,11 +5496,11 @@ export declare class GetInstanceByIdResponseBody extends $tea.Model {
|
|
|
5117
5496
|
});
|
|
5118
5497
|
}
|
|
5119
5498
|
export declare class GetInstanceByIdResponse extends $tea.Model {
|
|
5120
|
-
headers
|
|
5499
|
+
headers?: {
|
|
5121
5500
|
[key: string]: string;
|
|
5122
5501
|
};
|
|
5123
|
-
statusCode
|
|
5124
|
-
body
|
|
5502
|
+
statusCode?: number;
|
|
5503
|
+
body?: GetInstanceByIdResponseBody;
|
|
5125
5504
|
static names(): {
|
|
5126
5505
|
[key: string]: string;
|
|
5127
5506
|
};
|
|
@@ -5206,11 +5585,11 @@ export declare class GetInstanceIdListResponseBody extends $tea.Model {
|
|
|
5206
5585
|
});
|
|
5207
5586
|
}
|
|
5208
5587
|
export declare class GetInstanceIdListResponse extends $tea.Model {
|
|
5209
|
-
headers
|
|
5588
|
+
headers?: {
|
|
5210
5589
|
[key: string]: string;
|
|
5211
5590
|
};
|
|
5212
|
-
statusCode
|
|
5213
|
-
body
|
|
5591
|
+
statusCode?: number;
|
|
5592
|
+
body?: GetInstanceIdListResponseBody;
|
|
5214
5593
|
static names(): {
|
|
5215
5594
|
[key: string]: string;
|
|
5216
5595
|
};
|
|
@@ -5296,11 +5675,11 @@ export declare class GetInstancesResponseBody extends $tea.Model {
|
|
|
5296
5675
|
});
|
|
5297
5676
|
}
|
|
5298
5677
|
export declare class GetInstancesResponse extends $tea.Model {
|
|
5299
|
-
headers
|
|
5678
|
+
headers?: {
|
|
5300
5679
|
[key: string]: string;
|
|
5301
5680
|
};
|
|
5302
|
-
statusCode
|
|
5303
|
-
body
|
|
5681
|
+
statusCode?: number;
|
|
5682
|
+
body?: GetInstancesResponseBody;
|
|
5304
5683
|
static names(): {
|
|
5305
5684
|
[key: string]: string;
|
|
5306
5685
|
};
|
|
@@ -5372,11 +5751,98 @@ export declare class GetInstancesByIdListResponseBody extends $tea.Model {
|
|
|
5372
5751
|
});
|
|
5373
5752
|
}
|
|
5374
5753
|
export declare class GetInstancesByIdListResponse extends $tea.Model {
|
|
5375
|
-
headers
|
|
5754
|
+
headers?: {
|
|
5755
|
+
[key: string]: string;
|
|
5756
|
+
};
|
|
5757
|
+
statusCode?: number;
|
|
5758
|
+
body?: GetInstancesByIdListResponseBody;
|
|
5759
|
+
static names(): {
|
|
5760
|
+
[key: string]: string;
|
|
5761
|
+
};
|
|
5762
|
+
static types(): {
|
|
5763
|
+
[key: string]: any;
|
|
5764
|
+
};
|
|
5765
|
+
constructor(map?: {
|
|
5766
|
+
[key: string]: any;
|
|
5767
|
+
});
|
|
5768
|
+
}
|
|
5769
|
+
export declare class GetLiveReplayUrlHeaders extends $tea.Model {
|
|
5770
|
+
commonHeaders?: {
|
|
5771
|
+
[key: string]: string;
|
|
5772
|
+
};
|
|
5773
|
+
accountContext?: GetLiveReplayUrlHeadersAccountContext;
|
|
5774
|
+
static names(): {
|
|
5775
|
+
[key: string]: string;
|
|
5776
|
+
};
|
|
5777
|
+
static types(): {
|
|
5778
|
+
[key: string]: any;
|
|
5779
|
+
};
|
|
5780
|
+
constructor(map?: {
|
|
5781
|
+
[key: string]: any;
|
|
5782
|
+
});
|
|
5783
|
+
}
|
|
5784
|
+
export declare class GetLiveReplayUrlShrinkHeaders extends $tea.Model {
|
|
5785
|
+
commonHeaders?: {
|
|
5786
|
+
[key: string]: string;
|
|
5787
|
+
};
|
|
5788
|
+
accountContextShrink?: string;
|
|
5789
|
+
static names(): {
|
|
5790
|
+
[key: string]: string;
|
|
5791
|
+
};
|
|
5792
|
+
static types(): {
|
|
5793
|
+
[key: string]: any;
|
|
5794
|
+
};
|
|
5795
|
+
constructor(map?: {
|
|
5796
|
+
[key: string]: any;
|
|
5797
|
+
});
|
|
5798
|
+
}
|
|
5799
|
+
export declare class GetLiveReplayUrlRequest extends $tea.Model {
|
|
5800
|
+
liveId?: string;
|
|
5801
|
+
tenantContext?: GetLiveReplayUrlRequestTenantContext;
|
|
5802
|
+
static names(): {
|
|
5803
|
+
[key: string]: string;
|
|
5804
|
+
};
|
|
5805
|
+
static types(): {
|
|
5806
|
+
[key: string]: any;
|
|
5807
|
+
};
|
|
5808
|
+
constructor(map?: {
|
|
5809
|
+
[key: string]: any;
|
|
5810
|
+
});
|
|
5811
|
+
}
|
|
5812
|
+
export declare class GetLiveReplayUrlShrinkRequest extends $tea.Model {
|
|
5813
|
+
liveId?: string;
|
|
5814
|
+
tenantContextShrink?: string;
|
|
5815
|
+
static names(): {
|
|
5816
|
+
[key: string]: string;
|
|
5817
|
+
};
|
|
5818
|
+
static types(): {
|
|
5819
|
+
[key: string]: any;
|
|
5820
|
+
};
|
|
5821
|
+
constructor(map?: {
|
|
5822
|
+
[key: string]: any;
|
|
5823
|
+
});
|
|
5824
|
+
}
|
|
5825
|
+
export declare class GetLiveReplayUrlResponseBody extends $tea.Model {
|
|
5826
|
+
replayUrl?: string;
|
|
5827
|
+
requestId?: string;
|
|
5828
|
+
vendorRequestId?: string;
|
|
5829
|
+
vendorType?: string;
|
|
5830
|
+
static names(): {
|
|
5831
|
+
[key: string]: string;
|
|
5832
|
+
};
|
|
5833
|
+
static types(): {
|
|
5834
|
+
[key: string]: any;
|
|
5835
|
+
};
|
|
5836
|
+
constructor(map?: {
|
|
5837
|
+
[key: string]: any;
|
|
5838
|
+
});
|
|
5839
|
+
}
|
|
5840
|
+
export declare class GetLiveReplayUrlResponse extends $tea.Model {
|
|
5841
|
+
headers?: {
|
|
5376
5842
|
[key: string]: string;
|
|
5377
5843
|
};
|
|
5378
|
-
statusCode
|
|
5379
|
-
body
|
|
5844
|
+
statusCode?: number;
|
|
5845
|
+
body?: GetLiveReplayUrlResponseBody;
|
|
5380
5846
|
static names(): {
|
|
5381
5847
|
[key: string]: string;
|
|
5382
5848
|
};
|
|
@@ -5456,11 +5922,11 @@ export declare class GetMeCorpSubmissionResponseBody extends $tea.Model {
|
|
|
5456
5922
|
});
|
|
5457
5923
|
}
|
|
5458
5924
|
export declare class GetMeCorpSubmissionResponse extends $tea.Model {
|
|
5459
|
-
headers
|
|
5925
|
+
headers?: {
|
|
5460
5926
|
[key: string]: string;
|
|
5461
5927
|
};
|
|
5462
|
-
statusCode
|
|
5463
|
-
body
|
|
5928
|
+
statusCode?: number;
|
|
5929
|
+
body?: GetMeCorpSubmissionResponseBody;
|
|
5464
5930
|
static names(): {
|
|
5465
5931
|
[key: string]: string;
|
|
5466
5932
|
};
|
|
@@ -5543,11 +6009,11 @@ export declare class GetMeetingRoomsScheduleResponseBody extends $tea.Model {
|
|
|
5543
6009
|
});
|
|
5544
6010
|
}
|
|
5545
6011
|
export declare class GetMeetingRoomsScheduleResponse extends $tea.Model {
|
|
5546
|
-
headers
|
|
6012
|
+
headers?: {
|
|
5547
6013
|
[key: string]: string;
|
|
5548
6014
|
};
|
|
5549
|
-
statusCode
|
|
5550
|
-
body
|
|
6015
|
+
statusCode?: number;
|
|
6016
|
+
body?: GetMeetingRoomsScheduleResponseBody;
|
|
5551
6017
|
static names(): {
|
|
5552
6018
|
[key: string]: string;
|
|
5553
6019
|
};
|
|
@@ -5630,11 +6096,11 @@ export declare class GetMineWorkspaceResponseBody extends $tea.Model {
|
|
|
5630
6096
|
});
|
|
5631
6097
|
}
|
|
5632
6098
|
export declare class GetMineWorkspaceResponse extends $tea.Model {
|
|
5633
|
-
headers
|
|
6099
|
+
headers?: {
|
|
5634
6100
|
[key: string]: string;
|
|
5635
6101
|
};
|
|
5636
|
-
statusCode
|
|
5637
|
-
body
|
|
6102
|
+
statusCode?: number;
|
|
6103
|
+
body?: GetMineWorkspaceResponseBody;
|
|
5638
6104
|
static names(): {
|
|
5639
6105
|
[key: string]: string;
|
|
5640
6106
|
};
|
|
@@ -5719,11 +6185,11 @@ export declare class GetNodeResponseBody extends $tea.Model {
|
|
|
5719
6185
|
});
|
|
5720
6186
|
}
|
|
5721
6187
|
export declare class GetNodeResponse extends $tea.Model {
|
|
5722
|
-
headers
|
|
6188
|
+
headers?: {
|
|
5723
6189
|
[key: string]: string;
|
|
5724
6190
|
};
|
|
5725
|
-
statusCode
|
|
5726
|
-
body
|
|
6191
|
+
statusCode?: number;
|
|
6192
|
+
body?: GetNodeResponseBody;
|
|
5727
6193
|
static names(): {
|
|
5728
6194
|
[key: string]: string;
|
|
5729
6195
|
};
|
|
@@ -5806,11 +6272,11 @@ export declare class GetNodeByUrlResponseBody extends $tea.Model {
|
|
|
5806
6272
|
});
|
|
5807
6273
|
}
|
|
5808
6274
|
export declare class GetNodeByUrlResponse extends $tea.Model {
|
|
5809
|
-
headers
|
|
6275
|
+
headers?: {
|
|
5810
6276
|
[key: string]: string;
|
|
5811
6277
|
};
|
|
5812
|
-
statusCode
|
|
5813
|
-
body
|
|
6278
|
+
statusCode?: number;
|
|
6279
|
+
body?: GetNodeByUrlResponseBody;
|
|
5814
6280
|
static names(): {
|
|
5815
6281
|
[key: string]: string;
|
|
5816
6282
|
};
|
|
@@ -5893,11 +6359,11 @@ export declare class GetNodesResponseBody extends $tea.Model {
|
|
|
5893
6359
|
});
|
|
5894
6360
|
}
|
|
5895
6361
|
export declare class GetNodesResponse extends $tea.Model {
|
|
5896
|
-
headers
|
|
6362
|
+
headers?: {
|
|
5897
6363
|
[key: string]: string;
|
|
5898
6364
|
};
|
|
5899
|
-
statusCode
|
|
5900
|
-
body
|
|
6365
|
+
statusCode?: number;
|
|
6366
|
+
body?: GetNodesResponseBody;
|
|
5901
6367
|
static names(): {
|
|
5902
6368
|
[key: string]: string;
|
|
5903
6369
|
};
|
|
@@ -5979,11 +6445,11 @@ export declare class GetNotifyMeResponseBody extends $tea.Model {
|
|
|
5979
6445
|
});
|
|
5980
6446
|
}
|
|
5981
6447
|
export declare class GetNotifyMeResponse extends $tea.Model {
|
|
5982
|
-
headers
|
|
6448
|
+
headers?: {
|
|
5983
6449
|
[key: string]: string;
|
|
5984
6450
|
};
|
|
5985
|
-
statusCode
|
|
5986
|
-
body
|
|
6451
|
+
statusCode?: number;
|
|
6452
|
+
body?: GetNotifyMeResponseBody;
|
|
5987
6453
|
static names(): {
|
|
5988
6454
|
[key: string]: string;
|
|
5989
6455
|
};
|
|
@@ -6054,11 +6520,11 @@ export declare class GetOpenUrlResponseBody extends $tea.Model {
|
|
|
6054
6520
|
});
|
|
6055
6521
|
}
|
|
6056
6522
|
export declare class GetOpenUrlResponse extends $tea.Model {
|
|
6057
|
-
headers
|
|
6523
|
+
headers?: {
|
|
6058
6524
|
[key: string]: string;
|
|
6059
6525
|
};
|
|
6060
|
-
statusCode
|
|
6061
|
-
body
|
|
6526
|
+
statusCode?: number;
|
|
6527
|
+
body?: GetOpenUrlResponseBody;
|
|
6062
6528
|
static names(): {
|
|
6063
6529
|
[key: string]: string;
|
|
6064
6530
|
};
|
|
@@ -6130,11 +6596,11 @@ export declare class GetOperationRecordsResponseBody extends $tea.Model {
|
|
|
6130
6596
|
});
|
|
6131
6597
|
}
|
|
6132
6598
|
export declare class GetOperationRecordsResponse extends $tea.Model {
|
|
6133
|
-
headers
|
|
6599
|
+
headers?: {
|
|
6134
6600
|
[key: string]: string;
|
|
6135
6601
|
};
|
|
6136
|
-
statusCode
|
|
6137
|
-
body
|
|
6602
|
+
statusCode?: number;
|
|
6603
|
+
body?: GetOperationRecordsResponseBody;
|
|
6138
6604
|
static names(): {
|
|
6139
6605
|
[key: string]: string;
|
|
6140
6606
|
};
|
|
@@ -6222,11 +6688,11 @@ export declare class GetProcessDefinitionResponseBody extends $tea.Model {
|
|
|
6222
6688
|
});
|
|
6223
6689
|
}
|
|
6224
6690
|
export declare class GetProcessDefinitionResponse extends $tea.Model {
|
|
6225
|
-
headers
|
|
6691
|
+
headers?: {
|
|
6226
6692
|
[key: string]: string;
|
|
6227
6693
|
};
|
|
6228
|
-
statusCode
|
|
6229
|
-
body
|
|
6694
|
+
statusCode?: number;
|
|
6695
|
+
body?: GetProcessDefinitionResponseBody;
|
|
6230
6696
|
static names(): {
|
|
6231
6697
|
[key: string]: string;
|
|
6232
6698
|
};
|
|
@@ -6316,11 +6782,11 @@ export declare class GetRangeResponseBody extends $tea.Model {
|
|
|
6316
6782
|
});
|
|
6317
6783
|
}
|
|
6318
6784
|
export declare class GetRangeResponse extends $tea.Model {
|
|
6319
|
-
headers
|
|
6785
|
+
headers?: {
|
|
6320
6786
|
[key: string]: string;
|
|
6321
6787
|
};
|
|
6322
|
-
statusCode
|
|
6323
|
-
body
|
|
6788
|
+
statusCode?: number;
|
|
6789
|
+
body?: GetRangeResponseBody;
|
|
6324
6790
|
static names(): {
|
|
6325
6791
|
[key: string]: string;
|
|
6326
6792
|
};
|
|
@@ -6407,11 +6873,11 @@ export declare class GetReportTemplateByNameResponseBody extends $tea.Model {
|
|
|
6407
6873
|
});
|
|
6408
6874
|
}
|
|
6409
6875
|
export declare class GetReportTemplateByNameResponse extends $tea.Model {
|
|
6410
|
-
headers
|
|
6876
|
+
headers?: {
|
|
6411
6877
|
[key: string]: string;
|
|
6412
6878
|
};
|
|
6413
|
-
statusCode
|
|
6414
|
-
body
|
|
6879
|
+
statusCode?: number;
|
|
6880
|
+
body?: GetReportTemplateByNameResponseBody;
|
|
6415
6881
|
static names(): {
|
|
6416
6882
|
[key: string]: string;
|
|
6417
6883
|
};
|
|
@@ -6494,11 +6960,11 @@ export declare class GetReportUnReadCountResponseBody extends $tea.Model {
|
|
|
6494
6960
|
});
|
|
6495
6961
|
}
|
|
6496
6962
|
export declare class GetReportUnReadCountResponse extends $tea.Model {
|
|
6497
|
-
headers
|
|
6963
|
+
headers?: {
|
|
6498
6964
|
[key: string]: string;
|
|
6499
6965
|
};
|
|
6500
|
-
statusCode
|
|
6501
|
-
body
|
|
6966
|
+
statusCode?: number;
|
|
6967
|
+
body?: GetReportUnReadCountResponseBody;
|
|
6502
6968
|
static names(): {
|
|
6503
6969
|
[key: string]: string;
|
|
6504
6970
|
};
|
|
@@ -6571,11 +7037,11 @@ export declare class GetRunningTasksResponseBody extends $tea.Model {
|
|
|
6571
7037
|
});
|
|
6572
7038
|
}
|
|
6573
7039
|
export declare class GetRunningTasksResponse extends $tea.Model {
|
|
6574
|
-
headers
|
|
7040
|
+
headers?: {
|
|
6575
7041
|
[key: string]: string;
|
|
6576
7042
|
};
|
|
6577
|
-
statusCode
|
|
6578
|
-
body
|
|
7043
|
+
statusCode?: number;
|
|
7044
|
+
body?: GetRunningTasksResponseBody;
|
|
6579
7045
|
static names(): {
|
|
6580
7046
|
[key: string]: string;
|
|
6581
7047
|
};
|
|
@@ -6664,11 +7130,11 @@ export declare class GetSheetResponseBody extends $tea.Model {
|
|
|
6664
7130
|
});
|
|
6665
7131
|
}
|
|
6666
7132
|
export declare class GetSheetResponse extends $tea.Model {
|
|
6667
|
-
headers
|
|
7133
|
+
headers?: {
|
|
6668
7134
|
[key: string]: string;
|
|
6669
7135
|
};
|
|
6670
|
-
statusCode
|
|
6671
|
-
body
|
|
7136
|
+
statusCode?: number;
|
|
7137
|
+
body?: GetSheetResponseBody;
|
|
6672
7138
|
static names(): {
|
|
6673
7139
|
[key: string]: string;
|
|
6674
7140
|
};
|
|
@@ -6757,11 +7223,11 @@ export declare class GetSpaceDirectoriesResponseBody extends $tea.Model {
|
|
|
6757
7223
|
});
|
|
6758
7224
|
}
|
|
6759
7225
|
export declare class GetSpaceDirectoriesResponse extends $tea.Model {
|
|
6760
|
-
headers
|
|
7226
|
+
headers?: {
|
|
6761
7227
|
[key: string]: string;
|
|
6762
7228
|
};
|
|
6763
|
-
statusCode
|
|
6764
|
-
body
|
|
7229
|
+
statusCode?: number;
|
|
7230
|
+
body?: GetSpaceDirectoriesResponseBody;
|
|
6765
7231
|
static names(): {
|
|
6766
7232
|
[key: string]: string;
|
|
6767
7233
|
};
|
|
@@ -6833,11 +7299,11 @@ export declare class GetSubscribedCalendarResponseBody extends $tea.Model {
|
|
|
6833
7299
|
});
|
|
6834
7300
|
}
|
|
6835
7301
|
export declare class GetSubscribedCalendarResponse extends $tea.Model {
|
|
6836
|
-
headers
|
|
7302
|
+
headers?: {
|
|
6837
7303
|
[key: string]: string;
|
|
6838
7304
|
};
|
|
6839
|
-
statusCode
|
|
6840
|
-
body
|
|
7305
|
+
statusCode?: number;
|
|
7306
|
+
body?: GetSubscribedCalendarResponseBody;
|
|
6841
7307
|
static names(): {
|
|
6842
7308
|
[key: string]: string;
|
|
6843
7309
|
};
|
|
@@ -6916,11 +7382,11 @@ export declare class GetTaskCopiesResponseBody extends $tea.Model {
|
|
|
6916
7382
|
});
|
|
6917
7383
|
}
|
|
6918
7384
|
export declare class GetTaskCopiesResponse extends $tea.Model {
|
|
6919
|
-
headers
|
|
7385
|
+
headers?: {
|
|
6920
7386
|
[key: string]: string;
|
|
6921
7387
|
};
|
|
6922
|
-
statusCode
|
|
6923
|
-
body
|
|
7388
|
+
statusCode?: number;
|
|
7389
|
+
body?: GetTaskCopiesResponseBody;
|
|
6924
7390
|
static names(): {
|
|
6925
7391
|
[key: string]: string;
|
|
6926
7392
|
};
|
|
@@ -7004,11 +7470,11 @@ export declare class GetTemplateListByUserIdResponseBody extends $tea.Model {
|
|
|
7004
7470
|
});
|
|
7005
7471
|
}
|
|
7006
7472
|
export declare class GetTemplateListByUserIdResponse extends $tea.Model {
|
|
7007
|
-
headers
|
|
7473
|
+
headers?: {
|
|
7008
7474
|
[key: string]: string;
|
|
7009
7475
|
};
|
|
7010
|
-
statusCode
|
|
7011
|
-
body
|
|
7476
|
+
statusCode?: number;
|
|
7477
|
+
body?: GetTemplateListByUserIdResponseBody;
|
|
7012
7478
|
static names(): {
|
|
7013
7479
|
[key: string]: string;
|
|
7014
7480
|
};
|
|
@@ -7120,11 +7586,11 @@ export declare class GetUserResponseBody extends $tea.Model {
|
|
|
7120
7586
|
});
|
|
7121
7587
|
}
|
|
7122
7588
|
export declare class GetUserResponse extends $tea.Model {
|
|
7123
|
-
headers
|
|
7589
|
+
headers?: {
|
|
7124
7590
|
[key: string]: string;
|
|
7125
7591
|
};
|
|
7126
|
-
statusCode
|
|
7127
|
-
body
|
|
7592
|
+
statusCode?: number;
|
|
7593
|
+
body?: GetUserResponseBody;
|
|
7128
7594
|
static names(): {
|
|
7129
7595
|
[key: string]: string;
|
|
7130
7596
|
};
|
|
@@ -7207,11 +7673,11 @@ export declare class GetWorkspaceResponseBody extends $tea.Model {
|
|
|
7207
7673
|
});
|
|
7208
7674
|
}
|
|
7209
7675
|
export declare class GetWorkspaceResponse extends $tea.Model {
|
|
7210
|
-
headers
|
|
7676
|
+
headers?: {
|
|
7211
7677
|
[key: string]: string;
|
|
7212
7678
|
};
|
|
7213
|
-
statusCode
|
|
7214
|
-
body
|
|
7679
|
+
statusCode?: number;
|
|
7680
|
+
body?: GetWorkspaceResponseBody;
|
|
7215
7681
|
static names(): {
|
|
7216
7682
|
[key: string]: string;
|
|
7217
7683
|
};
|
|
@@ -7294,11 +7760,11 @@ export declare class GetWorkspacesResponseBody extends $tea.Model {
|
|
|
7294
7760
|
});
|
|
7295
7761
|
}
|
|
7296
7762
|
export declare class GetWorkspacesResponse extends $tea.Model {
|
|
7297
|
-
headers
|
|
7763
|
+
headers?: {
|
|
7298
7764
|
[key: string]: string;
|
|
7299
7765
|
};
|
|
7300
|
-
statusCode
|
|
7301
|
-
body
|
|
7766
|
+
statusCode?: number;
|
|
7767
|
+
body?: GetWorkspacesResponseBody;
|
|
7302
7768
|
static names(): {
|
|
7303
7769
|
[key: string]: string;
|
|
7304
7770
|
};
|
|
@@ -7398,11 +7864,11 @@ export declare class GrantHonorResponseBody extends $tea.Model {
|
|
|
7398
7864
|
});
|
|
7399
7865
|
}
|
|
7400
7866
|
export declare class GrantHonorResponse extends $tea.Model {
|
|
7401
|
-
headers
|
|
7867
|
+
headers?: {
|
|
7402
7868
|
[key: string]: string;
|
|
7403
7869
|
};
|
|
7404
|
-
statusCode
|
|
7405
|
-
body
|
|
7870
|
+
statusCode?: number;
|
|
7871
|
+
body?: GrantHonorResponseBody;
|
|
7406
7872
|
static names(): {
|
|
7407
7873
|
[key: string]: string;
|
|
7408
7874
|
};
|
|
@@ -7489,11 +7955,11 @@ export declare class InsertColumnsBeforeResponseBody extends $tea.Model {
|
|
|
7489
7955
|
});
|
|
7490
7956
|
}
|
|
7491
7957
|
export declare class InsertColumnsBeforeResponse extends $tea.Model {
|
|
7492
|
-
headers
|
|
7958
|
+
headers?: {
|
|
7493
7959
|
[key: string]: string;
|
|
7494
7960
|
};
|
|
7495
|
-
statusCode
|
|
7496
|
-
body
|
|
7961
|
+
statusCode?: number;
|
|
7962
|
+
body?: InsertColumnsBeforeResponseBody;
|
|
7497
7963
|
static names(): {
|
|
7498
7964
|
[key: string]: string;
|
|
7499
7965
|
};
|
|
@@ -7580,11 +8046,11 @@ export declare class InsertRowsBeforeResponseBody extends $tea.Model {
|
|
|
7580
8046
|
});
|
|
7581
8047
|
}
|
|
7582
8048
|
export declare class InsertRowsBeforeResponse extends $tea.Model {
|
|
7583
|
-
headers
|
|
8049
|
+
headers?: {
|
|
7584
8050
|
[key: string]: string;
|
|
7585
8051
|
};
|
|
7586
|
-
statusCode
|
|
7587
|
-
body
|
|
8052
|
+
statusCode?: number;
|
|
8053
|
+
body?: InsertRowsBeforeResponseBody;
|
|
7588
8054
|
static names(): {
|
|
7589
8055
|
[key: string]: string;
|
|
7590
8056
|
};
|
|
@@ -7667,11 +8133,11 @@ export declare class InviteUsersResponseBody extends $tea.Model {
|
|
|
7667
8133
|
});
|
|
7668
8134
|
}
|
|
7669
8135
|
export declare class InviteUsersResponse extends $tea.Model {
|
|
7670
|
-
headers
|
|
8136
|
+
headers?: {
|
|
7671
8137
|
[key: string]: string;
|
|
7672
8138
|
};
|
|
7673
|
-
statusCode
|
|
7674
|
-
body
|
|
8139
|
+
statusCode?: number;
|
|
8140
|
+
body?: InviteUsersResponseBody;
|
|
7675
8141
|
static names(): {
|
|
7676
8142
|
[key: string]: string;
|
|
7677
8143
|
};
|
|
@@ -7747,11 +8213,11 @@ export declare class ListApplicationResponseBody extends $tea.Model {
|
|
|
7747
8213
|
});
|
|
7748
8214
|
}
|
|
7749
8215
|
export declare class ListApplicationResponse extends $tea.Model {
|
|
7750
|
-
headers
|
|
8216
|
+
headers?: {
|
|
7751
8217
|
[key: string]: string;
|
|
7752
8218
|
};
|
|
7753
|
-
statusCode
|
|
7754
|
-
body
|
|
8219
|
+
statusCode?: number;
|
|
8220
|
+
body?: ListApplicationResponseBody;
|
|
7755
8221
|
static names(): {
|
|
7756
8222
|
[key: string]: string;
|
|
7757
8223
|
};
|
|
@@ -7832,11 +8298,11 @@ export declare class ListCalendarsResponseBody extends $tea.Model {
|
|
|
7832
8298
|
});
|
|
7833
8299
|
}
|
|
7834
8300
|
export declare class ListCalendarsResponse extends $tea.Model {
|
|
7835
|
-
headers
|
|
8301
|
+
headers?: {
|
|
7836
8302
|
[key: string]: string;
|
|
7837
8303
|
};
|
|
7838
|
-
statusCode
|
|
7839
|
-
body
|
|
8304
|
+
statusCode?: number;
|
|
8305
|
+
body?: ListCalendarsResponseBody;
|
|
7840
8306
|
static names(): {
|
|
7841
8307
|
[key: string]: string;
|
|
7842
8308
|
};
|
|
@@ -7915,11 +8381,11 @@ export declare class ListEventsResponseBody extends $tea.Model {
|
|
|
7915
8381
|
});
|
|
7916
8382
|
}
|
|
7917
8383
|
export declare class ListEventsResponse extends $tea.Model {
|
|
7918
|
-
headers
|
|
8384
|
+
headers?: {
|
|
7919
8385
|
[key: string]: string;
|
|
7920
8386
|
};
|
|
7921
|
-
statusCode
|
|
7922
|
-
body
|
|
8387
|
+
statusCode?: number;
|
|
8388
|
+
body?: ListEventsResponseBody;
|
|
7923
8389
|
static names(): {
|
|
7924
8390
|
[key: string]: string;
|
|
7925
8391
|
};
|
|
@@ -7992,11 +8458,11 @@ export declare class ListEventsViewResponseBody extends $tea.Model {
|
|
|
7992
8458
|
});
|
|
7993
8459
|
}
|
|
7994
8460
|
export declare class ListEventsViewResponse extends $tea.Model {
|
|
7995
|
-
headers
|
|
8461
|
+
headers?: {
|
|
7996
8462
|
[key: string]: string;
|
|
7997
8463
|
};
|
|
7998
|
-
statusCode
|
|
7999
|
-
body
|
|
8464
|
+
statusCode?: number;
|
|
8465
|
+
body?: ListEventsViewResponseBody;
|
|
8000
8466
|
static names(): {
|
|
8001
8467
|
[key: string]: string;
|
|
8002
8468
|
};
|
|
@@ -8085,11 +8551,11 @@ export declare class ListFormRemarksResponseBody extends $tea.Model {
|
|
|
8085
8551
|
});
|
|
8086
8552
|
}
|
|
8087
8553
|
export declare class ListFormRemarksResponse extends $tea.Model {
|
|
8088
|
-
headers
|
|
8554
|
+
headers?: {
|
|
8089
8555
|
[key: string]: string;
|
|
8090
8556
|
};
|
|
8091
|
-
statusCode
|
|
8092
|
-
body
|
|
8557
|
+
statusCode?: number;
|
|
8558
|
+
body?: ListFormRemarksResponseBody;
|
|
8093
8559
|
static names(): {
|
|
8094
8560
|
[key: string]: string;
|
|
8095
8561
|
};
|
|
@@ -8161,11 +8627,11 @@ export declare class ListNavigationByFormTypeResponseBody extends $tea.Model {
|
|
|
8161
8627
|
});
|
|
8162
8628
|
}
|
|
8163
8629
|
export declare class ListNavigationByFormTypeResponse extends $tea.Model {
|
|
8164
|
-
headers
|
|
8630
|
+
headers?: {
|
|
8165
8631
|
[key: string]: string;
|
|
8166
8632
|
};
|
|
8167
|
-
statusCode
|
|
8168
|
-
body
|
|
8633
|
+
statusCode?: number;
|
|
8634
|
+
body?: ListNavigationByFormTypeResponseBody;
|
|
8169
8635
|
static names(): {
|
|
8170
8636
|
[key: string]: string;
|
|
8171
8637
|
};
|
|
@@ -8253,11 +8719,11 @@ export declare class ListNodesResponseBody extends $tea.Model {
|
|
|
8253
8719
|
});
|
|
8254
8720
|
}
|
|
8255
8721
|
export declare class ListNodesResponse extends $tea.Model {
|
|
8256
|
-
headers
|
|
8722
|
+
headers?: {
|
|
8257
8723
|
[key: string]: string;
|
|
8258
8724
|
};
|
|
8259
|
-
statusCode
|
|
8260
|
-
body
|
|
8725
|
+
statusCode?: number;
|
|
8726
|
+
body?: ListNodesResponseBody;
|
|
8261
8727
|
static names(): {
|
|
8262
8728
|
[key: string]: string;
|
|
8263
8729
|
};
|
|
@@ -8353,11 +8819,11 @@ export declare class ListReportResponseBody extends $tea.Model {
|
|
|
8353
8819
|
});
|
|
8354
8820
|
}
|
|
8355
8821
|
export declare class ListReportResponse extends $tea.Model {
|
|
8356
|
-
headers
|
|
8822
|
+
headers?: {
|
|
8357
8823
|
[key: string]: string;
|
|
8358
8824
|
};
|
|
8359
|
-
statusCode
|
|
8360
|
-
body
|
|
8825
|
+
statusCode?: number;
|
|
8826
|
+
body?: ListReportResponseBody;
|
|
8361
8827
|
static names(): {
|
|
8362
8828
|
[key: string]: string;
|
|
8363
8829
|
};
|
|
@@ -8434,11 +8900,11 @@ export declare class ListTableDataByFormInstanceIdTableIdResponseBody extends $t
|
|
|
8434
8900
|
});
|
|
8435
8901
|
}
|
|
8436
8902
|
export declare class ListTableDataByFormInstanceIdTableIdResponse extends $tea.Model {
|
|
8437
|
-
headers
|
|
8903
|
+
headers?: {
|
|
8438
8904
|
[key: string]: string;
|
|
8439
8905
|
};
|
|
8440
|
-
statusCode
|
|
8441
|
-
body
|
|
8906
|
+
statusCode?: number;
|
|
8907
|
+
body?: ListTableDataByFormInstanceIdTableIdResponseBody;
|
|
8442
8908
|
static names(): {
|
|
8443
8909
|
[key: string]: string;
|
|
8444
8910
|
};
|
|
@@ -8524,11 +8990,11 @@ export declare class ListTeamsResponseBody extends $tea.Model {
|
|
|
8524
8990
|
});
|
|
8525
8991
|
}
|
|
8526
8992
|
export declare class ListTeamsResponse extends $tea.Model {
|
|
8527
|
-
headers
|
|
8993
|
+
headers?: {
|
|
8528
8994
|
[key: string]: string;
|
|
8529
8995
|
};
|
|
8530
|
-
statusCode
|
|
8531
|
-
body
|
|
8996
|
+
statusCode?: number;
|
|
8997
|
+
body?: ListTeamsResponseBody;
|
|
8532
8998
|
static names(): {
|
|
8533
8999
|
[key: string]: string;
|
|
8534
9000
|
};
|
|
@@ -8618,11 +9084,11 @@ export declare class ListWorkspacesResponseBody extends $tea.Model {
|
|
|
8618
9084
|
});
|
|
8619
9085
|
}
|
|
8620
9086
|
export declare class ListWorkspacesResponse extends $tea.Model {
|
|
8621
|
-
headers
|
|
9087
|
+
headers?: {
|
|
8622
9088
|
[key: string]: string;
|
|
8623
9089
|
};
|
|
8624
|
-
statusCode
|
|
8625
|
-
body
|
|
9090
|
+
statusCode?: number;
|
|
9091
|
+
body?: ListWorkspacesResponseBody;
|
|
8626
9092
|
static names(): {
|
|
8627
9093
|
[key: string]: string;
|
|
8628
9094
|
};
|
|
@@ -8737,11 +9203,11 @@ export declare class PatchEventResponseBody extends $tea.Model {
|
|
|
8737
9203
|
});
|
|
8738
9204
|
}
|
|
8739
9205
|
export declare class PatchEventResponse extends $tea.Model {
|
|
8740
|
-
headers
|
|
9206
|
+
headers?: {
|
|
8741
9207
|
[key: string]: string;
|
|
8742
9208
|
};
|
|
8743
|
-
statusCode
|
|
8744
|
-
body
|
|
9209
|
+
statusCode?: number;
|
|
9210
|
+
body?: PatchEventResponseBody;
|
|
8745
9211
|
static names(): {
|
|
8746
9212
|
[key: string]: string;
|
|
8747
9213
|
};
|
|
@@ -8831,11 +9297,11 @@ export declare class QueryCloudRecordTextResponseBody extends $tea.Model {
|
|
|
8831
9297
|
});
|
|
8832
9298
|
}
|
|
8833
9299
|
export declare class QueryCloudRecordTextResponse extends $tea.Model {
|
|
8834
|
-
headers
|
|
9300
|
+
headers?: {
|
|
8835
9301
|
[key: string]: string;
|
|
8836
9302
|
};
|
|
8837
|
-
statusCode
|
|
8838
|
-
body
|
|
9303
|
+
statusCode?: number;
|
|
9304
|
+
body?: QueryCloudRecordTextResponseBody;
|
|
8839
9305
|
static names(): {
|
|
8840
9306
|
[key: string]: string;
|
|
8841
9307
|
};
|
|
@@ -8916,11 +9382,11 @@ export declare class QueryCloudRecordVideoResponseBody extends $tea.Model {
|
|
|
8916
9382
|
});
|
|
8917
9383
|
}
|
|
8918
9384
|
export declare class QueryCloudRecordVideoResponse extends $tea.Model {
|
|
8919
|
-
headers
|
|
9385
|
+
headers?: {
|
|
8920
9386
|
[key: string]: string;
|
|
8921
9387
|
};
|
|
8922
|
-
statusCode
|
|
8923
|
-
body
|
|
9388
|
+
statusCode?: number;
|
|
9389
|
+
body?: QueryCloudRecordVideoResponseBody;
|
|
8924
9390
|
static names(): {
|
|
8925
9391
|
[key: string]: string;
|
|
8926
9392
|
};
|
|
@@ -9009,11 +9475,11 @@ export declare class QueryCloudRecordVideoPlayInfoResponseBody extends $tea.Mode
|
|
|
9009
9475
|
});
|
|
9010
9476
|
}
|
|
9011
9477
|
export declare class QueryCloudRecordVideoPlayInfoResponse extends $tea.Model {
|
|
9012
|
-
headers
|
|
9478
|
+
headers?: {
|
|
9013
9479
|
[key: string]: string;
|
|
9014
9480
|
};
|
|
9015
|
-
statusCode
|
|
9016
|
-
body
|
|
9481
|
+
statusCode?: number;
|
|
9482
|
+
body?: QueryCloudRecordVideoPlayInfoResponseBody;
|
|
9017
9483
|
static names(): {
|
|
9018
9484
|
[key: string]: string;
|
|
9019
9485
|
};
|
|
@@ -9080,11 +9546,11 @@ export declare class QueryConferenceInfoResponseBody extends $tea.Model {
|
|
|
9080
9546
|
});
|
|
9081
9547
|
}
|
|
9082
9548
|
export declare class QueryConferenceInfoResponse extends $tea.Model {
|
|
9083
|
-
headers
|
|
9549
|
+
headers?: {
|
|
9084
9550
|
[key: string]: string;
|
|
9085
9551
|
};
|
|
9086
|
-
statusCode
|
|
9087
|
-
body
|
|
9552
|
+
statusCode?: number;
|
|
9553
|
+
body?: QueryConferenceInfoResponseBody;
|
|
9088
9554
|
static names(): {
|
|
9089
9555
|
[key: string]: string;
|
|
9090
9556
|
};
|
|
@@ -9171,11 +9637,11 @@ export declare class QueryConferenceMembersResponseBody extends $tea.Model {
|
|
|
9171
9637
|
});
|
|
9172
9638
|
}
|
|
9173
9639
|
export declare class QueryConferenceMembersResponse extends $tea.Model {
|
|
9174
|
-
headers
|
|
9640
|
+
headers?: {
|
|
9175
9641
|
[key: string]: string;
|
|
9176
9642
|
};
|
|
9177
|
-
statusCode
|
|
9178
|
-
body
|
|
9643
|
+
statusCode?: number;
|
|
9644
|
+
body?: QueryConferenceMembersResponseBody;
|
|
9179
9645
|
static names(): {
|
|
9180
9646
|
[key: string]: string;
|
|
9181
9647
|
};
|
|
@@ -9277,11 +9743,11 @@ export declare class QueryDentryResponseBody extends $tea.Model {
|
|
|
9277
9743
|
});
|
|
9278
9744
|
}
|
|
9279
9745
|
export declare class QueryDentryResponse extends $tea.Model {
|
|
9280
|
-
headers
|
|
9746
|
+
headers?: {
|
|
9281
9747
|
[key: string]: string;
|
|
9282
9748
|
};
|
|
9283
|
-
statusCode
|
|
9284
|
-
body
|
|
9749
|
+
statusCode?: number;
|
|
9750
|
+
body?: QueryDentryResponseBody;
|
|
9285
9751
|
static names(): {
|
|
9286
9752
|
[key: string]: string;
|
|
9287
9753
|
};
|
|
@@ -9373,11 +9839,11 @@ export declare class QueryLiveInfoResponseBody extends $tea.Model {
|
|
|
9373
9839
|
});
|
|
9374
9840
|
}
|
|
9375
9841
|
export declare class QueryLiveInfoResponse extends $tea.Model {
|
|
9376
|
-
headers
|
|
9842
|
+
headers?: {
|
|
9377
9843
|
[key: string]: string;
|
|
9378
9844
|
};
|
|
9379
|
-
statusCode
|
|
9380
|
-
body
|
|
9845
|
+
statusCode?: number;
|
|
9846
|
+
body?: QueryLiveInfoResponseBody;
|
|
9381
9847
|
static names(): {
|
|
9382
9848
|
[key: string]: string;
|
|
9383
9849
|
};
|
|
@@ -9465,11 +9931,11 @@ export declare class QueryLiveWatchDetailResponseBody extends $tea.Model {
|
|
|
9465
9931
|
});
|
|
9466
9932
|
}
|
|
9467
9933
|
export declare class QueryLiveWatchDetailResponse extends $tea.Model {
|
|
9468
|
-
headers
|
|
9934
|
+
headers?: {
|
|
9469
9935
|
[key: string]: string;
|
|
9470
9936
|
};
|
|
9471
|
-
statusCode
|
|
9472
|
-
body
|
|
9937
|
+
statusCode?: number;
|
|
9938
|
+
body?: QueryLiveWatchDetailResponseBody;
|
|
9473
9939
|
static names(): {
|
|
9474
9940
|
[key: string]: string;
|
|
9475
9941
|
};
|
|
@@ -9555,11 +10021,11 @@ export declare class QueryLiveWatchUserListResponseBody extends $tea.Model {
|
|
|
9555
10021
|
});
|
|
9556
10022
|
}
|
|
9557
10023
|
export declare class QueryLiveWatchUserListResponse extends $tea.Model {
|
|
9558
|
-
headers
|
|
10024
|
+
headers?: {
|
|
9559
10025
|
[key: string]: string;
|
|
9560
10026
|
};
|
|
9561
|
-
statusCode
|
|
9562
|
-
body
|
|
10027
|
+
statusCode?: number;
|
|
10028
|
+
body?: QueryLiveWatchUserListResponseBody;
|
|
9563
10029
|
static names(): {
|
|
9564
10030
|
[key: string]: string;
|
|
9565
10031
|
};
|
|
@@ -9642,11 +10108,11 @@ export declare class QueryMeetingRoomResponseBody extends $tea.Model {
|
|
|
9642
10108
|
});
|
|
9643
10109
|
}
|
|
9644
10110
|
export declare class QueryMeetingRoomResponse extends $tea.Model {
|
|
9645
|
-
headers
|
|
10111
|
+
headers?: {
|
|
9646
10112
|
[key: string]: string;
|
|
9647
10113
|
};
|
|
9648
|
-
statusCode
|
|
9649
|
-
body
|
|
10114
|
+
statusCode?: number;
|
|
10115
|
+
body?: QueryMeetingRoomResponseBody;
|
|
9650
10116
|
static names(): {
|
|
9651
10117
|
[key: string]: string;
|
|
9652
10118
|
};
|
|
@@ -9729,11 +10195,11 @@ export declare class QueryMeetingRoomGroupResponseBody extends $tea.Model {
|
|
|
9729
10195
|
});
|
|
9730
10196
|
}
|
|
9731
10197
|
export declare class QueryMeetingRoomGroupResponse extends $tea.Model {
|
|
9732
|
-
headers
|
|
10198
|
+
headers?: {
|
|
9733
10199
|
[key: string]: string;
|
|
9734
10200
|
};
|
|
9735
|
-
statusCode
|
|
9736
|
-
body
|
|
10201
|
+
statusCode?: number;
|
|
10202
|
+
body?: QueryMeetingRoomGroupResponseBody;
|
|
9737
10203
|
static names(): {
|
|
9738
10204
|
[key: string]: string;
|
|
9739
10205
|
};
|
|
@@ -9816,11 +10282,11 @@ export declare class QueryMeetingRoomGroupListResponseBody extends $tea.Model {
|
|
|
9816
10282
|
});
|
|
9817
10283
|
}
|
|
9818
10284
|
export declare class QueryMeetingRoomGroupListResponse extends $tea.Model {
|
|
9819
|
-
headers
|
|
10285
|
+
headers?: {
|
|
9820
10286
|
[key: string]: string;
|
|
9821
10287
|
};
|
|
9822
|
-
statusCode
|
|
9823
|
-
body
|
|
10288
|
+
statusCode?: number;
|
|
10289
|
+
body?: QueryMeetingRoomGroupListResponseBody;
|
|
9824
10290
|
static names(): {
|
|
9825
10291
|
[key: string]: string;
|
|
9826
10292
|
};
|
|
@@ -9905,11 +10371,11 @@ export declare class QueryMeetingRoomListResponseBody extends $tea.Model {
|
|
|
9905
10371
|
});
|
|
9906
10372
|
}
|
|
9907
10373
|
export declare class QueryMeetingRoomListResponse extends $tea.Model {
|
|
9908
|
-
headers
|
|
10374
|
+
headers?: {
|
|
9909
10375
|
[key: string]: string;
|
|
9910
10376
|
};
|
|
9911
|
-
statusCode
|
|
9912
|
-
body
|
|
10377
|
+
statusCode?: number;
|
|
10378
|
+
body?: QueryMeetingRoomListResponseBody;
|
|
9913
10379
|
static names(): {
|
|
9914
10380
|
[key: string]: string;
|
|
9915
10381
|
};
|
|
@@ -9995,11 +10461,11 @@ export declare class QueryOrgHonorsResponseBody extends $tea.Model {
|
|
|
9995
10461
|
});
|
|
9996
10462
|
}
|
|
9997
10463
|
export declare class QueryOrgHonorsResponse extends $tea.Model {
|
|
9998
|
-
headers
|
|
10464
|
+
headers?: {
|
|
9999
10465
|
[key: string]: string;
|
|
10000
10466
|
};
|
|
10001
|
-
statusCode
|
|
10002
|
-
body
|
|
10467
|
+
statusCode?: number;
|
|
10468
|
+
body?: QueryOrgHonorsResponseBody;
|
|
10003
10469
|
static names(): {
|
|
10004
10470
|
[key: string]: string;
|
|
10005
10471
|
};
|
|
@@ -10083,11 +10549,11 @@ export declare class QueryOrgTodoTasksResponseBody extends $tea.Model {
|
|
|
10083
10549
|
});
|
|
10084
10550
|
}
|
|
10085
10551
|
export declare class QueryOrgTodoTasksResponse extends $tea.Model {
|
|
10086
|
-
headers
|
|
10552
|
+
headers?: {
|
|
10087
10553
|
[key: string]: string;
|
|
10088
10554
|
};
|
|
10089
|
-
statusCode
|
|
10090
|
-
body
|
|
10555
|
+
statusCode?: number;
|
|
10556
|
+
body?: QueryOrgTodoTasksResponseBody;
|
|
10091
10557
|
static names(): {
|
|
10092
10558
|
[key: string]: string;
|
|
10093
10559
|
};
|
|
@@ -10174,11 +10640,11 @@ export declare class QueryScheduleConferenceResponseBody extends $tea.Model {
|
|
|
10174
10640
|
});
|
|
10175
10641
|
}
|
|
10176
10642
|
export declare class QueryScheduleConferenceResponse extends $tea.Model {
|
|
10177
|
-
headers
|
|
10643
|
+
headers?: {
|
|
10178
10644
|
[key: string]: string;
|
|
10179
10645
|
};
|
|
10180
|
-
statusCode
|
|
10181
|
-
body
|
|
10646
|
+
statusCode?: number;
|
|
10647
|
+
body?: QueryScheduleConferenceResponseBody;
|
|
10182
10648
|
static names(): {
|
|
10183
10649
|
[key: string]: string;
|
|
10184
10650
|
};
|
|
@@ -10266,11 +10732,11 @@ export declare class QueryUserHonorsResponseBody extends $tea.Model {
|
|
|
10266
10732
|
});
|
|
10267
10733
|
}
|
|
10268
10734
|
export declare class QueryUserHonorsResponse extends $tea.Model {
|
|
10269
|
-
headers
|
|
10735
|
+
headers?: {
|
|
10270
10736
|
[key: string]: string;
|
|
10271
10737
|
};
|
|
10272
|
-
statusCode
|
|
10273
|
-
body
|
|
10738
|
+
statusCode?: number;
|
|
10739
|
+
body?: QueryUserHonorsResponseBody;
|
|
10274
10740
|
static names(): {
|
|
10275
10741
|
[key: string]: string;
|
|
10276
10742
|
};
|
|
@@ -10362,11 +10828,11 @@ export declare class RecallHonorResponseBody extends $tea.Model {
|
|
|
10362
10828
|
});
|
|
10363
10829
|
}
|
|
10364
10830
|
export declare class RecallHonorResponse extends $tea.Model {
|
|
10365
|
-
headers
|
|
10831
|
+
headers?: {
|
|
10366
10832
|
[key: string]: string;
|
|
10367
10833
|
};
|
|
10368
|
-
statusCode
|
|
10369
|
-
body
|
|
10834
|
+
statusCode?: number;
|
|
10835
|
+
body?: RecallHonorResponseBody;
|
|
10370
10836
|
static names(): {
|
|
10371
10837
|
[key: string]: string;
|
|
10372
10838
|
};
|
|
@@ -10453,11 +10919,11 @@ export declare class ReceiverListReportResponseBody extends $tea.Model {
|
|
|
10453
10919
|
});
|
|
10454
10920
|
}
|
|
10455
10921
|
export declare class ReceiverListReportResponse extends $tea.Model {
|
|
10456
|
-
headers
|
|
10922
|
+
headers?: {
|
|
10457
10923
|
[key: string]: string;
|
|
10458
10924
|
};
|
|
10459
|
-
statusCode
|
|
10460
|
-
body
|
|
10925
|
+
statusCode?: number;
|
|
10926
|
+
body?: ReceiverListReportResponseBody;
|
|
10461
10927
|
static names(): {
|
|
10462
10928
|
[key: string]: string;
|
|
10463
10929
|
};
|
|
@@ -10532,11 +10998,11 @@ export declare class RedirectTaskResponseBody extends $tea.Model {
|
|
|
10532
10998
|
});
|
|
10533
10999
|
}
|
|
10534
11000
|
export declare class RedirectTaskResponse extends $tea.Model {
|
|
10535
|
-
headers
|
|
11001
|
+
headers?: {
|
|
10536
11002
|
[key: string]: string;
|
|
10537
11003
|
};
|
|
10538
|
-
statusCode
|
|
10539
|
-
body
|
|
11004
|
+
statusCode?: number;
|
|
11005
|
+
body?: RedirectTaskResponseBody;
|
|
10540
11006
|
static names(): {
|
|
10541
11007
|
[key: string]: string;
|
|
10542
11008
|
};
|
|
@@ -10626,11 +11092,11 @@ export declare class RemoveAttendeeResponseBody extends $tea.Model {
|
|
|
10626
11092
|
});
|
|
10627
11093
|
}
|
|
10628
11094
|
export declare class RemoveAttendeeResponse extends $tea.Model {
|
|
10629
|
-
headers
|
|
11095
|
+
headers?: {
|
|
10630
11096
|
[key: string]: string;
|
|
10631
11097
|
};
|
|
10632
|
-
statusCode
|
|
10633
|
-
body
|
|
11098
|
+
statusCode?: number;
|
|
11099
|
+
body?: RemoveAttendeeResponseBody;
|
|
10634
11100
|
static names(): {
|
|
10635
11101
|
[key: string]: string;
|
|
10636
11102
|
};
|
|
@@ -10713,11 +11179,11 @@ export declare class RemoveMeetingRoomsResponseBody extends $tea.Model {
|
|
|
10713
11179
|
});
|
|
10714
11180
|
}
|
|
10715
11181
|
export declare class RemoveMeetingRoomsResponse extends $tea.Model {
|
|
10716
|
-
headers
|
|
11182
|
+
headers?: {
|
|
10717
11183
|
[key: string]: string;
|
|
10718
11184
|
};
|
|
10719
|
-
statusCode
|
|
10720
|
-
body
|
|
11185
|
+
statusCode?: number;
|
|
11186
|
+
body?: RemoveMeetingRoomsResponseBody;
|
|
10721
11187
|
static names(): {
|
|
10722
11188
|
[key: string]: string;
|
|
10723
11189
|
};
|
|
@@ -10802,11 +11268,11 @@ export declare class SaveContentResponseBody extends $tea.Model {
|
|
|
10802
11268
|
});
|
|
10803
11269
|
}
|
|
10804
11270
|
export declare class SaveContentResponse extends $tea.Model {
|
|
10805
|
-
headers
|
|
11271
|
+
headers?: {
|
|
10806
11272
|
[key: string]: string;
|
|
10807
11273
|
};
|
|
10808
|
-
statusCode
|
|
10809
|
-
body
|
|
11274
|
+
statusCode?: number;
|
|
11275
|
+
body?: SaveContentResponseBody;
|
|
10810
11276
|
static names(): {
|
|
10811
11277
|
[key: string]: string;
|
|
10812
11278
|
};
|
|
@@ -10879,11 +11345,11 @@ export declare class SaveFormDataResponseBody extends $tea.Model {
|
|
|
10879
11345
|
});
|
|
10880
11346
|
}
|
|
10881
11347
|
export declare class SaveFormDataResponse extends $tea.Model {
|
|
10882
|
-
headers
|
|
11348
|
+
headers?: {
|
|
10883
11349
|
[key: string]: string;
|
|
10884
11350
|
};
|
|
10885
|
-
statusCode
|
|
10886
|
-
body
|
|
11351
|
+
statusCode?: number;
|
|
11352
|
+
body?: SaveFormDataResponseBody;
|
|
10887
11353
|
static names(): {
|
|
10888
11354
|
[key: string]: string;
|
|
10889
11355
|
};
|
|
@@ -10958,11 +11424,11 @@ export declare class SaveFormRemarkResponseBody extends $tea.Model {
|
|
|
10958
11424
|
});
|
|
10959
11425
|
}
|
|
10960
11426
|
export declare class SaveFormRemarkResponse extends $tea.Model {
|
|
10961
|
-
headers
|
|
11427
|
+
headers?: {
|
|
10962
11428
|
[key: string]: string;
|
|
10963
11429
|
};
|
|
10964
|
-
statusCode
|
|
10965
|
-
body
|
|
11430
|
+
statusCode?: number;
|
|
11431
|
+
body?: SaveFormRemarkResponseBody;
|
|
10966
11432
|
static names(): {
|
|
10967
11433
|
[key: string]: string;
|
|
10968
11434
|
};
|
|
@@ -11041,11 +11507,11 @@ export declare class SearchEmployeeFieldValuesResponseBody extends $tea.Model {
|
|
|
11041
11507
|
});
|
|
11042
11508
|
}
|
|
11043
11509
|
export declare class SearchEmployeeFieldValuesResponse extends $tea.Model {
|
|
11044
|
-
headers
|
|
11510
|
+
headers?: {
|
|
11045
11511
|
[key: string]: string;
|
|
11046
11512
|
};
|
|
11047
|
-
statusCode
|
|
11048
|
-
body
|
|
11513
|
+
statusCode?: number;
|
|
11514
|
+
body?: SearchEmployeeFieldValuesResponseBody;
|
|
11049
11515
|
static names(): {
|
|
11050
11516
|
[key: string]: string;
|
|
11051
11517
|
};
|
|
@@ -11127,11 +11593,11 @@ export declare class SearchFormDataIdListResponseBody extends $tea.Model {
|
|
|
11127
11593
|
});
|
|
11128
11594
|
}
|
|
11129
11595
|
export declare class SearchFormDataIdListResponse extends $tea.Model {
|
|
11130
|
-
headers
|
|
11596
|
+
headers?: {
|
|
11131
11597
|
[key: string]: string;
|
|
11132
11598
|
};
|
|
11133
|
-
statusCode
|
|
11134
|
-
body
|
|
11599
|
+
statusCode?: number;
|
|
11600
|
+
body?: SearchFormDataIdListResponseBody;
|
|
11135
11601
|
static names(): {
|
|
11136
11602
|
[key: string]: string;
|
|
11137
11603
|
};
|
|
@@ -11213,11 +11679,11 @@ export declare class SearchFormDataSecondGenerationResponseBody extends $tea.Mod
|
|
|
11213
11679
|
});
|
|
11214
11680
|
}
|
|
11215
11681
|
export declare class SearchFormDataSecondGenerationResponse extends $tea.Model {
|
|
11216
|
-
headers
|
|
11682
|
+
headers?: {
|
|
11217
11683
|
[key: string]: string;
|
|
11218
11684
|
};
|
|
11219
|
-
statusCode
|
|
11220
|
-
body
|
|
11685
|
+
statusCode?: number;
|
|
11686
|
+
body?: SearchFormDataSecondGenerationResponseBody;
|
|
11221
11687
|
static names(): {
|
|
11222
11688
|
[key: string]: string;
|
|
11223
11689
|
};
|
|
@@ -11299,11 +11765,11 @@ export declare class SearchFormDataSecondGenerationNoTableFieldResponseBody exte
|
|
|
11299
11765
|
});
|
|
11300
11766
|
}
|
|
11301
11767
|
export declare class SearchFormDataSecondGenerationNoTableFieldResponse extends $tea.Model {
|
|
11302
|
-
headers
|
|
11768
|
+
headers?: {
|
|
11303
11769
|
[key: string]: string;
|
|
11304
11770
|
};
|
|
11305
|
-
statusCode
|
|
11306
|
-
body
|
|
11771
|
+
statusCode?: number;
|
|
11772
|
+
body?: SearchFormDataSecondGenerationNoTableFieldResponseBody;
|
|
11307
11773
|
static names(): {
|
|
11308
11774
|
[key: string]: string;
|
|
11309
11775
|
};
|
|
@@ -11386,11 +11852,11 @@ export declare class SearchFormDatasResponseBody extends $tea.Model {
|
|
|
11386
11852
|
});
|
|
11387
11853
|
}
|
|
11388
11854
|
export declare class SearchFormDatasResponse extends $tea.Model {
|
|
11389
|
-
headers
|
|
11855
|
+
headers?: {
|
|
11390
11856
|
[key: string]: string;
|
|
11391
11857
|
};
|
|
11392
|
-
statusCode
|
|
11393
|
-
body
|
|
11858
|
+
statusCode?: number;
|
|
11859
|
+
body?: SearchFormDatasResponseBody;
|
|
11394
11860
|
static names(): {
|
|
11395
11861
|
[key: string]: string;
|
|
11396
11862
|
};
|
|
@@ -11480,11 +11946,11 @@ export declare class SendBannerResponseBody extends $tea.Model {
|
|
|
11480
11946
|
});
|
|
11481
11947
|
}
|
|
11482
11948
|
export declare class SendBannerResponse extends $tea.Model {
|
|
11483
|
-
headers
|
|
11949
|
+
headers?: {
|
|
11484
11950
|
[key: string]: string;
|
|
11485
11951
|
};
|
|
11486
|
-
statusCode
|
|
11487
|
-
body
|
|
11952
|
+
statusCode?: number;
|
|
11953
|
+
body?: SendBannerResponseBody;
|
|
11488
11954
|
static names(): {
|
|
11489
11955
|
[key: string]: string;
|
|
11490
11956
|
};
|
|
@@ -11574,11 +12040,11 @@ export declare class SendPopupResponseBody extends $tea.Model {
|
|
|
11574
12040
|
});
|
|
11575
12041
|
}
|
|
11576
12042
|
export declare class SendPopupResponse extends $tea.Model {
|
|
11577
|
-
headers
|
|
12043
|
+
headers?: {
|
|
11578
12044
|
[key: string]: string;
|
|
11579
12045
|
};
|
|
11580
|
-
statusCode
|
|
11581
|
-
body
|
|
12046
|
+
statusCode?: number;
|
|
12047
|
+
body?: SendPopupResponseBody;
|
|
11582
12048
|
static names(): {
|
|
11583
12049
|
[key: string]: string;
|
|
11584
12050
|
};
|
|
@@ -11668,11 +12134,11 @@ export declare class SendSearchShadeResponseBody extends $tea.Model {
|
|
|
11668
12134
|
});
|
|
11669
12135
|
}
|
|
11670
12136
|
export declare class SendSearchShadeResponse extends $tea.Model {
|
|
11671
|
-
headers
|
|
12137
|
+
headers?: {
|
|
11672
12138
|
[key: string]: string;
|
|
11673
12139
|
};
|
|
11674
|
-
statusCode
|
|
11675
|
-
body
|
|
12140
|
+
statusCode?: number;
|
|
12141
|
+
body?: SendSearchShadeResponseBody;
|
|
11676
12142
|
static names(): {
|
|
11677
12143
|
[key: string]: string;
|
|
11678
12144
|
};
|
|
@@ -11761,11 +12227,11 @@ export declare class SetColumnsVisibilityResponseBody extends $tea.Model {
|
|
|
11761
12227
|
});
|
|
11762
12228
|
}
|
|
11763
12229
|
export declare class SetColumnsVisibilityResponse extends $tea.Model {
|
|
11764
|
-
headers
|
|
12230
|
+
headers?: {
|
|
11765
12231
|
[key: string]: string;
|
|
11766
12232
|
};
|
|
11767
|
-
statusCode
|
|
11768
|
-
body
|
|
12233
|
+
statusCode?: number;
|
|
12234
|
+
body?: SetColumnsVisibilityResponseBody;
|
|
11769
12235
|
static names(): {
|
|
11770
12236
|
[key: string]: string;
|
|
11771
12237
|
};
|
|
@@ -11854,11 +12320,11 @@ export declare class SetRowsVisibilityResponseBody extends $tea.Model {
|
|
|
11854
12320
|
});
|
|
11855
12321
|
}
|
|
11856
12322
|
export declare class SetRowsVisibilityResponse extends $tea.Model {
|
|
11857
|
-
headers
|
|
12323
|
+
headers?: {
|
|
11858
12324
|
[key: string]: string;
|
|
11859
12325
|
};
|
|
11860
|
-
statusCode
|
|
11861
|
-
body
|
|
12326
|
+
statusCode?: number;
|
|
12327
|
+
body?: SetRowsVisibilityResponseBody;
|
|
11862
12328
|
static names(): {
|
|
11863
12329
|
[key: string]: string;
|
|
11864
12330
|
};
|
|
@@ -11950,11 +12416,11 @@ export declare class SimpleListReportResponseBody extends $tea.Model {
|
|
|
11950
12416
|
});
|
|
11951
12417
|
}
|
|
11952
12418
|
export declare class SimpleListReportResponse extends $tea.Model {
|
|
11953
|
-
headers
|
|
12419
|
+
headers?: {
|
|
11954
12420
|
[key: string]: string;
|
|
11955
12421
|
};
|
|
11956
|
-
statusCode
|
|
11957
|
-
body
|
|
12422
|
+
statusCode?: number;
|
|
12423
|
+
body?: SimpleListReportResponseBody;
|
|
11958
12424
|
static names(): {
|
|
11959
12425
|
[key: string]: string;
|
|
11960
12426
|
};
|
|
@@ -12039,11 +12505,11 @@ export declare class StartCloudRecordResponseBody extends $tea.Model {
|
|
|
12039
12505
|
});
|
|
12040
12506
|
}
|
|
12041
12507
|
export declare class StartCloudRecordResponse extends $tea.Model {
|
|
12042
|
-
headers
|
|
12508
|
+
headers?: {
|
|
12043
12509
|
[key: string]: string;
|
|
12044
12510
|
};
|
|
12045
|
-
statusCode
|
|
12046
|
-
body
|
|
12511
|
+
statusCode?: number;
|
|
12512
|
+
body?: StartCloudRecordResponseBody;
|
|
12047
12513
|
static names(): {
|
|
12048
12514
|
[key: string]: string;
|
|
12049
12515
|
};
|
|
@@ -12118,11 +12584,11 @@ export declare class StartInstanceResponseBody extends $tea.Model {
|
|
|
12118
12584
|
});
|
|
12119
12585
|
}
|
|
12120
12586
|
export declare class StartInstanceResponse extends $tea.Model {
|
|
12121
|
-
headers
|
|
12587
|
+
headers?: {
|
|
12122
12588
|
[key: string]: string;
|
|
12123
12589
|
};
|
|
12124
|
-
statusCode
|
|
12125
|
-
body
|
|
12590
|
+
statusCode?: number;
|
|
12591
|
+
body?: StartInstanceResponseBody;
|
|
12126
12592
|
static names(): {
|
|
12127
12593
|
[key: string]: string;
|
|
12128
12594
|
};
|
|
@@ -12211,11 +12677,11 @@ export declare class StatisticsListByTypeReportResponseBody extends $tea.Model {
|
|
|
12211
12677
|
});
|
|
12212
12678
|
}
|
|
12213
12679
|
export declare class StatisticsListByTypeReportResponse extends $tea.Model {
|
|
12214
|
-
headers
|
|
12680
|
+
headers?: {
|
|
12215
12681
|
[key: string]: string;
|
|
12216
12682
|
};
|
|
12217
|
-
statusCode
|
|
12218
|
-
body
|
|
12683
|
+
statusCode?: number;
|
|
12684
|
+
body?: StatisticsListByTypeReportResponseBody;
|
|
12219
12685
|
static names(): {
|
|
12220
12686
|
[key: string]: string;
|
|
12221
12687
|
};
|
|
@@ -12299,11 +12765,11 @@ export declare class StatisticsReportResponseBody extends $tea.Model {
|
|
|
12299
12765
|
});
|
|
12300
12766
|
}
|
|
12301
12767
|
export declare class StatisticsReportResponse extends $tea.Model {
|
|
12302
|
-
headers
|
|
12768
|
+
headers?: {
|
|
12303
12769
|
[key: string]: string;
|
|
12304
12770
|
};
|
|
12305
|
-
statusCode
|
|
12306
|
-
body
|
|
12771
|
+
statusCode?: number;
|
|
12772
|
+
body?: StatisticsReportResponseBody;
|
|
12307
12773
|
static names(): {
|
|
12308
12774
|
[key: string]: string;
|
|
12309
12775
|
};
|
|
@@ -12384,11 +12850,11 @@ export declare class StopCloudRecordResponseBody extends $tea.Model {
|
|
|
12384
12850
|
});
|
|
12385
12851
|
}
|
|
12386
12852
|
export declare class StopCloudRecordResponse extends $tea.Model {
|
|
12387
|
-
headers
|
|
12853
|
+
headers?: {
|
|
12388
12854
|
[key: string]: string;
|
|
12389
12855
|
};
|
|
12390
|
-
statusCode
|
|
12391
|
-
body
|
|
12856
|
+
statusCode?: number;
|
|
12857
|
+
body?: StopCloudRecordResponseBody;
|
|
12392
12858
|
static names(): {
|
|
12393
12859
|
[key: string]: string;
|
|
12394
12860
|
};
|
|
@@ -12454,11 +12920,11 @@ export declare class SubscribeCalendarResponseBody extends $tea.Model {
|
|
|
12454
12920
|
});
|
|
12455
12921
|
}
|
|
12456
12922
|
export declare class SubscribeCalendarResponse extends $tea.Model {
|
|
12457
|
-
headers
|
|
12923
|
+
headers?: {
|
|
12458
12924
|
[key: string]: string;
|
|
12459
12925
|
};
|
|
12460
|
-
statusCode
|
|
12461
|
-
body
|
|
12926
|
+
statusCode?: number;
|
|
12927
|
+
body?: SubscribeCalendarResponseBody;
|
|
12462
12928
|
static names(): {
|
|
12463
12929
|
[key: string]: string;
|
|
12464
12930
|
};
|
|
@@ -12529,11 +12995,11 @@ export declare class TerminateInstanceResponseBody extends $tea.Model {
|
|
|
12529
12995
|
});
|
|
12530
12996
|
}
|
|
12531
12997
|
export declare class TerminateInstanceResponse extends $tea.Model {
|
|
12532
|
-
headers
|
|
12998
|
+
headers?: {
|
|
12533
12999
|
[key: string]: string;
|
|
12534
13000
|
};
|
|
12535
|
-
statusCode
|
|
12536
|
-
body
|
|
13001
|
+
statusCode?: number;
|
|
13002
|
+
body?: TerminateInstanceResponseBody;
|
|
12537
13003
|
static names(): {
|
|
12538
13004
|
[key: string]: string;
|
|
12539
13005
|
};
|
|
@@ -12600,11 +13066,11 @@ export declare class UnsubscribeCalendarResponseBody extends $tea.Model {
|
|
|
12600
13066
|
});
|
|
12601
13067
|
}
|
|
12602
13068
|
export declare class UnsubscribeCalendarResponse extends $tea.Model {
|
|
12603
|
-
headers
|
|
13069
|
+
headers?: {
|
|
12604
13070
|
[key: string]: string;
|
|
12605
13071
|
};
|
|
12606
|
-
statusCode
|
|
12607
|
-
body
|
|
13072
|
+
statusCode?: number;
|
|
13073
|
+
body?: UnsubscribeCalendarResponseBody;
|
|
12608
13074
|
static names(): {
|
|
12609
13075
|
[key: string]: string;
|
|
12610
13076
|
};
|
|
@@ -12677,11 +13143,11 @@ export declare class UpdateFormDataResponseBody extends $tea.Model {
|
|
|
12677
13143
|
});
|
|
12678
13144
|
}
|
|
12679
13145
|
export declare class UpdateFormDataResponse extends $tea.Model {
|
|
12680
|
-
headers
|
|
13146
|
+
headers?: {
|
|
12681
13147
|
[key: string]: string;
|
|
12682
13148
|
};
|
|
12683
|
-
statusCode
|
|
12684
|
-
body
|
|
13149
|
+
statusCode?: number;
|
|
13150
|
+
body?: UpdateFormDataResponseBody;
|
|
12685
13151
|
static names(): {
|
|
12686
13152
|
[key: string]: string;
|
|
12687
13153
|
};
|
|
@@ -12753,11 +13219,11 @@ export declare class UpdateInstanceResponseBody extends $tea.Model {
|
|
|
12753
13219
|
});
|
|
12754
13220
|
}
|
|
12755
13221
|
export declare class UpdateInstanceResponse extends $tea.Model {
|
|
12756
|
-
headers
|
|
13222
|
+
headers?: {
|
|
12757
13223
|
[key: string]: string;
|
|
12758
13224
|
};
|
|
12759
|
-
statusCode
|
|
12760
|
-
body
|
|
13225
|
+
statusCode?: number;
|
|
13226
|
+
body?: UpdateInstanceResponseBody;
|
|
12761
13227
|
static names(): {
|
|
12762
13228
|
[key: string]: string;
|
|
12763
13229
|
};
|
|
@@ -12848,11 +13314,11 @@ export declare class UpdateLiveResponseBody extends $tea.Model {
|
|
|
12848
13314
|
});
|
|
12849
13315
|
}
|
|
12850
13316
|
export declare class UpdateLiveResponse extends $tea.Model {
|
|
12851
|
-
headers
|
|
13317
|
+
headers?: {
|
|
12852
13318
|
[key: string]: string;
|
|
12853
13319
|
};
|
|
12854
|
-
statusCode
|
|
12855
|
-
body
|
|
13320
|
+
statusCode?: number;
|
|
13321
|
+
body?: UpdateLiveResponseBody;
|
|
12856
13322
|
static names(): {
|
|
12857
13323
|
[key: string]: string;
|
|
12858
13324
|
};
|
|
@@ -12955,11 +13421,11 @@ export declare class UpdateMeetingRoomResponseBody extends $tea.Model {
|
|
|
12955
13421
|
});
|
|
12956
13422
|
}
|
|
12957
13423
|
export declare class UpdateMeetingRoomResponse extends $tea.Model {
|
|
12958
|
-
headers
|
|
13424
|
+
headers?: {
|
|
12959
13425
|
[key: string]: string;
|
|
12960
13426
|
};
|
|
12961
|
-
statusCode
|
|
12962
|
-
body
|
|
13427
|
+
statusCode?: number;
|
|
13428
|
+
body?: UpdateMeetingRoomResponseBody;
|
|
12963
13429
|
static names(): {
|
|
12964
13430
|
[key: string]: string;
|
|
12965
13431
|
};
|
|
@@ -13042,11 +13508,11 @@ export declare class UpdateMeetingRoomGroupResponseBody extends $tea.Model {
|
|
|
13042
13508
|
});
|
|
13043
13509
|
}
|
|
13044
13510
|
export declare class UpdateMeetingRoomGroupResponse extends $tea.Model {
|
|
13045
|
-
headers
|
|
13511
|
+
headers?: {
|
|
13046
13512
|
[key: string]: string;
|
|
13047
13513
|
};
|
|
13048
|
-
statusCode
|
|
13049
|
-
body
|
|
13514
|
+
statusCode?: number;
|
|
13515
|
+
body?: UpdateMeetingRoomGroupResponseBody;
|
|
13050
13516
|
static names(): {
|
|
13051
13517
|
[key: string]: string;
|
|
13052
13518
|
};
|
|
@@ -13139,11 +13605,11 @@ export declare class UpdateRangeResponseBody extends $tea.Model {
|
|
|
13139
13605
|
});
|
|
13140
13606
|
}
|
|
13141
13607
|
export declare class UpdateRangeResponse extends $tea.Model {
|
|
13142
|
-
headers
|
|
13608
|
+
headers?: {
|
|
13143
13609
|
[key: string]: string;
|
|
13144
13610
|
};
|
|
13145
|
-
statusCode
|
|
13146
|
-
body
|
|
13611
|
+
statusCode?: number;
|
|
13612
|
+
body?: UpdateRangeResponseBody;
|
|
13147
13613
|
static names(): {
|
|
13148
13614
|
[key: string]: string;
|
|
13149
13615
|
};
|
|
@@ -13230,11 +13696,11 @@ export declare class UpdateScheduleConferenceResponseBody extends $tea.Model {
|
|
|
13230
13696
|
});
|
|
13231
13697
|
}
|
|
13232
13698
|
export declare class UpdateScheduleConferenceResponse extends $tea.Model {
|
|
13233
|
-
headers
|
|
13699
|
+
headers?: {
|
|
13234
13700
|
[key: string]: string;
|
|
13235
13701
|
};
|
|
13236
|
-
statusCode
|
|
13237
|
-
body
|
|
13702
|
+
statusCode?: number;
|
|
13703
|
+
body?: UpdateScheduleConferenceResponseBody;
|
|
13238
13704
|
static names(): {
|
|
13239
13705
|
[key: string]: string;
|
|
13240
13706
|
};
|
|
@@ -13324,11 +13790,11 @@ export declare class UpdateStatusResponseBody extends $tea.Model {
|
|
|
13324
13790
|
});
|
|
13325
13791
|
}
|
|
13326
13792
|
export declare class UpdateStatusResponse extends $tea.Model {
|
|
13327
|
-
headers
|
|
13793
|
+
headers?: {
|
|
13328
13794
|
[key: string]: string;
|
|
13329
13795
|
};
|
|
13330
|
-
statusCode
|
|
13331
|
-
body
|
|
13796
|
+
statusCode?: number;
|
|
13797
|
+
body?: UpdateStatusResponseBody;
|
|
13332
13798
|
static names(): {
|
|
13333
13799
|
[key: string]: string;
|
|
13334
13800
|
};
|
|
@@ -13415,11 +13881,11 @@ export declare class UpdateSubscribedCalendarsResponseBody extends $tea.Model {
|
|
|
13415
13881
|
});
|
|
13416
13882
|
}
|
|
13417
13883
|
export declare class UpdateSubscribedCalendarsResponse extends $tea.Model {
|
|
13418
|
-
headers
|
|
13884
|
+
headers?: {
|
|
13419
13885
|
[key: string]: string;
|
|
13420
13886
|
};
|
|
13421
|
-
statusCode
|
|
13422
|
-
body
|
|
13887
|
+
statusCode?: number;
|
|
13888
|
+
body?: UpdateSubscribedCalendarsResponseBody;
|
|
13423
13889
|
static names(): {
|
|
13424
13890
|
[key: string]: string;
|
|
13425
13891
|
};
|
|
@@ -13512,11 +13978,11 @@ export declare class UpdateTodoTaskResponseBody extends $tea.Model {
|
|
|
13512
13978
|
});
|
|
13513
13979
|
}
|
|
13514
13980
|
export declare class UpdateTodoTaskResponse extends $tea.Model {
|
|
13515
|
-
headers
|
|
13981
|
+
headers?: {
|
|
13516
13982
|
[key: string]: string;
|
|
13517
13983
|
};
|
|
13518
|
-
statusCode
|
|
13519
|
-
body
|
|
13984
|
+
statusCode?: number;
|
|
13985
|
+
body?: UpdateTodoTaskResponseBody;
|
|
13520
13986
|
static names(): {
|
|
13521
13987
|
[key: string]: string;
|
|
13522
13988
|
};
|
|
@@ -13601,11 +14067,11 @@ export declare class UpdateTodoTaskExecutorStatusResponseBody extends $tea.Model
|
|
|
13601
14067
|
});
|
|
13602
14068
|
}
|
|
13603
14069
|
export declare class UpdateTodoTaskExecutorStatusResponse extends $tea.Model {
|
|
13604
|
-
headers
|
|
14070
|
+
headers?: {
|
|
13605
14071
|
[key: string]: string;
|
|
13606
14072
|
};
|
|
13607
|
-
statusCode
|
|
13608
|
-
body
|
|
14073
|
+
statusCode?: number;
|
|
14074
|
+
body?: UpdateTodoTaskExecutorStatusResponseBody;
|
|
13609
14075
|
static names(): {
|
|
13610
14076
|
[key: string]: string;
|
|
13611
14077
|
};
|
|
@@ -13675,11 +14141,11 @@ export declare class UpdateUserAvatarResponseBody extends $tea.Model {
|
|
|
13675
14141
|
});
|
|
13676
14142
|
}
|
|
13677
14143
|
export declare class UpdateUserAvatarResponse extends $tea.Model {
|
|
13678
|
-
headers
|
|
14144
|
+
headers?: {
|
|
13679
14145
|
[key: string]: string;
|
|
13680
14146
|
};
|
|
13681
|
-
statusCode
|
|
13682
|
-
body
|
|
14147
|
+
statusCode?: number;
|
|
14148
|
+
body?: UpdateUserAvatarResponseBody;
|
|
13683
14149
|
static names(): {
|
|
13684
14150
|
[key: string]: string;
|
|
13685
14151
|
};
|
|
@@ -13763,11 +14229,11 @@ export declare class UpdateWorkspaceDocMembersResponseBody extends $tea.Model {
|
|
|
13763
14229
|
});
|
|
13764
14230
|
}
|
|
13765
14231
|
export declare class UpdateWorkspaceDocMembersResponse extends $tea.Model {
|
|
13766
|
-
headers
|
|
14232
|
+
headers?: {
|
|
13767
14233
|
[key: string]: string;
|
|
13768
14234
|
};
|
|
13769
|
-
statusCode
|
|
13770
|
-
body
|
|
14235
|
+
statusCode?: number;
|
|
14236
|
+
body?: UpdateWorkspaceDocMembersResponseBody;
|
|
13771
14237
|
static names(): {
|
|
13772
14238
|
[key: string]: string;
|
|
13773
14239
|
};
|
|
@@ -13849,11 +14315,11 @@ export declare class UpdateWorkspaceMembersResponseBody extends $tea.Model {
|
|
|
13849
14315
|
});
|
|
13850
14316
|
}
|
|
13851
14317
|
export declare class UpdateWorkspaceMembersResponse extends $tea.Model {
|
|
13852
|
-
headers
|
|
14318
|
+
headers?: {
|
|
13853
14319
|
[key: string]: string;
|
|
13854
14320
|
};
|
|
13855
|
-
statusCode
|
|
13856
|
-
body
|
|
14321
|
+
statusCode?: number;
|
|
14322
|
+
body?: UpdateWorkspaceMembersResponseBody;
|
|
13857
14323
|
static names(): {
|
|
13858
14324
|
[key: string]: string;
|
|
13859
14325
|
};
|
|
@@ -13940,11 +14406,11 @@ export declare class UploadMediaResponseBody extends $tea.Model {
|
|
|
13940
14406
|
});
|
|
13941
14407
|
}
|
|
13942
14408
|
export declare class UploadMediaResponse extends $tea.Model {
|
|
13943
|
-
headers
|
|
14409
|
+
headers?: {
|
|
13944
14410
|
[key: string]: string;
|
|
13945
14411
|
};
|
|
13946
|
-
statusCode
|
|
13947
|
-
body
|
|
14412
|
+
statusCode?: number;
|
|
14413
|
+
body?: UploadMediaResponseBody;
|
|
13948
14414
|
static names(): {
|
|
13949
14415
|
[key: string]: string;
|
|
13950
14416
|
};
|
|
@@ -14038,11 +14504,11 @@ export declare class WearOrgHonorResponseBody extends $tea.Model {
|
|
|
14038
14504
|
});
|
|
14039
14505
|
}
|
|
14040
14506
|
export declare class WearOrgHonorResponse extends $tea.Model {
|
|
14041
|
-
headers
|
|
14507
|
+
headers?: {
|
|
14042
14508
|
[key: string]: string;
|
|
14043
14509
|
};
|
|
14044
|
-
statusCode
|
|
14045
|
-
body
|
|
14510
|
+
statusCode?: number;
|
|
14511
|
+
body?: WearOrgHonorResponseBody;
|
|
14046
14512
|
static names(): {
|
|
14047
14513
|
[key: string]: string;
|
|
14048
14514
|
};
|
|
@@ -15001,6 +15467,42 @@ export declare class CreateOrgHonorTemplateRequestTenantContext extends $tea.Mod
|
|
|
15001
15467
|
[key: string]: any;
|
|
15002
15468
|
});
|
|
15003
15469
|
}
|
|
15470
|
+
export declare class CreatePersonalTodoTaskHeadersAccountContext extends $tea.Model {
|
|
15471
|
+
userToken?: string;
|
|
15472
|
+
static names(): {
|
|
15473
|
+
[key: string]: string;
|
|
15474
|
+
};
|
|
15475
|
+
static types(): {
|
|
15476
|
+
[key: string]: any;
|
|
15477
|
+
};
|
|
15478
|
+
constructor(map?: {
|
|
15479
|
+
[key: string]: any;
|
|
15480
|
+
});
|
|
15481
|
+
}
|
|
15482
|
+
export declare class CreatePersonalTodoTaskRequestNotifyConfigs extends $tea.Model {
|
|
15483
|
+
dingNotify?: string;
|
|
15484
|
+
static names(): {
|
|
15485
|
+
[key: string]: string;
|
|
15486
|
+
};
|
|
15487
|
+
static types(): {
|
|
15488
|
+
[key: string]: any;
|
|
15489
|
+
};
|
|
15490
|
+
constructor(map?: {
|
|
15491
|
+
[key: string]: any;
|
|
15492
|
+
});
|
|
15493
|
+
}
|
|
15494
|
+
export declare class CreatePersonalTodoTaskRequestTenantContext extends $tea.Model {
|
|
15495
|
+
tenantId?: string;
|
|
15496
|
+
static names(): {
|
|
15497
|
+
[key: string]: string;
|
|
15498
|
+
};
|
|
15499
|
+
static types(): {
|
|
15500
|
+
[key: string]: any;
|
|
15501
|
+
};
|
|
15502
|
+
constructor(map?: {
|
|
15503
|
+
[key: string]: any;
|
|
15504
|
+
});
|
|
15505
|
+
}
|
|
15004
15506
|
export declare class CreateReportHeadersAccountContext extends $tea.Model {
|
|
15005
15507
|
accountId?: string;
|
|
15006
15508
|
static names(): {
|
|
@@ -15077,6 +15579,54 @@ export declare class CreateScheduleConferenceRequestTenantContext extends $tea.M
|
|
|
15077
15579
|
[key: string]: any;
|
|
15078
15580
|
});
|
|
15079
15581
|
}
|
|
15582
|
+
export declare class CreateSearchDomeHeadersAccountContext extends $tea.Model {
|
|
15583
|
+
userToken?: string;
|
|
15584
|
+
static names(): {
|
|
15585
|
+
[key: string]: string;
|
|
15586
|
+
};
|
|
15587
|
+
static types(): {
|
|
15588
|
+
[key: string]: any;
|
|
15589
|
+
};
|
|
15590
|
+
constructor(map?: {
|
|
15591
|
+
[key: string]: any;
|
|
15592
|
+
});
|
|
15593
|
+
}
|
|
15594
|
+
export declare class CreateSearchDomeRequestTenantContext extends $tea.Model {
|
|
15595
|
+
tenantId?: string;
|
|
15596
|
+
static names(): {
|
|
15597
|
+
[key: string]: string;
|
|
15598
|
+
};
|
|
15599
|
+
static types(): {
|
|
15600
|
+
[key: string]: any;
|
|
15601
|
+
};
|
|
15602
|
+
constructor(map?: {
|
|
15603
|
+
[key: string]: any;
|
|
15604
|
+
});
|
|
15605
|
+
}
|
|
15606
|
+
export declare class CreateSearchKeywordHeadersAccountContext extends $tea.Model {
|
|
15607
|
+
userToken?: string;
|
|
15608
|
+
static names(): {
|
|
15609
|
+
[key: string]: string;
|
|
15610
|
+
};
|
|
15611
|
+
static types(): {
|
|
15612
|
+
[key: string]: any;
|
|
15613
|
+
};
|
|
15614
|
+
constructor(map?: {
|
|
15615
|
+
[key: string]: any;
|
|
15616
|
+
});
|
|
15617
|
+
}
|
|
15618
|
+
export declare class CreateSearchKeywordRequestTenantContext extends $tea.Model {
|
|
15619
|
+
tenantId?: string;
|
|
15620
|
+
static names(): {
|
|
15621
|
+
[key: string]: string;
|
|
15622
|
+
};
|
|
15623
|
+
static types(): {
|
|
15624
|
+
[key: string]: any;
|
|
15625
|
+
};
|
|
15626
|
+
constructor(map?: {
|
|
15627
|
+
[key: string]: any;
|
|
15628
|
+
});
|
|
15629
|
+
}
|
|
15080
15630
|
export declare class CreateSheetHeadersAccountContext extends $tea.Model {
|
|
15081
15631
|
accountId?: string;
|
|
15082
15632
|
static names(): {
|
|
@@ -15781,6 +16331,30 @@ export declare class GetCorpTasksResponseBodyData extends $tea.Model {
|
|
|
15781
16331
|
[key: string]: any;
|
|
15782
16332
|
});
|
|
15783
16333
|
}
|
|
16334
|
+
export declare class GetDocContentHeadersAccountContext extends $tea.Model {
|
|
16335
|
+
userToken?: string;
|
|
16336
|
+
static names(): {
|
|
16337
|
+
[key: string]: string;
|
|
16338
|
+
};
|
|
16339
|
+
static types(): {
|
|
16340
|
+
[key: string]: any;
|
|
16341
|
+
};
|
|
16342
|
+
constructor(map?: {
|
|
16343
|
+
[key: string]: any;
|
|
16344
|
+
});
|
|
16345
|
+
}
|
|
16346
|
+
export declare class GetDocContentRequestTenantContext extends $tea.Model {
|
|
16347
|
+
tenantId?: string;
|
|
16348
|
+
static names(): {
|
|
16349
|
+
[key: string]: string;
|
|
16350
|
+
};
|
|
16351
|
+
static types(): {
|
|
16352
|
+
[key: string]: any;
|
|
16353
|
+
};
|
|
16354
|
+
constructor(map?: {
|
|
16355
|
+
[key: string]: any;
|
|
16356
|
+
});
|
|
16357
|
+
}
|
|
15784
16358
|
export declare class GetEventHeadersAccountContext extends $tea.Model {
|
|
15785
16359
|
accountId?: string;
|
|
15786
16360
|
static names(): {
|
|
@@ -16421,6 +16995,30 @@ export declare class GetInstancesByIdListResponseBodyResult extends $tea.Model {
|
|
|
16421
16995
|
[key: string]: any;
|
|
16422
16996
|
});
|
|
16423
16997
|
}
|
|
16998
|
+
export declare class GetLiveReplayUrlHeadersAccountContext extends $tea.Model {
|
|
16999
|
+
accountId?: string;
|
|
17000
|
+
static names(): {
|
|
17001
|
+
[key: string]: string;
|
|
17002
|
+
};
|
|
17003
|
+
static types(): {
|
|
17004
|
+
[key: string]: any;
|
|
17005
|
+
};
|
|
17006
|
+
constructor(map?: {
|
|
17007
|
+
[key: string]: any;
|
|
17008
|
+
});
|
|
17009
|
+
}
|
|
17010
|
+
export declare class GetLiveReplayUrlRequestTenantContext extends $tea.Model {
|
|
17011
|
+
tenantId?: string;
|
|
17012
|
+
static names(): {
|
|
17013
|
+
[key: string]: string;
|
|
17014
|
+
};
|
|
17015
|
+
static types(): {
|
|
17016
|
+
[key: string]: any;
|
|
17017
|
+
};
|
|
17018
|
+
constructor(map?: {
|
|
17019
|
+
[key: string]: any;
|
|
17020
|
+
});
|
|
17021
|
+
}
|
|
16424
17022
|
export declare class GetMeCorpSubmissionHeadersAccountContext extends $tea.Model {
|
|
16425
17023
|
accountId?: string;
|
|
16426
17024
|
static names(): {
|
|
@@ -21429,12 +22027,18 @@ export default class Client extends OpenApi {
|
|
|
21429
22027
|
createOrUpdateFormData(request: CreateOrUpdateFormDataRequest): Promise<CreateOrUpdateFormDataResponse>;
|
|
21430
22028
|
createOrgHonorTemplateWithOptions(tmpReq: CreateOrgHonorTemplateRequest, tmpHeader: CreateOrgHonorTemplateHeaders, runtime: $Util.RuntimeOptions): Promise<CreateOrgHonorTemplateResponse>;
|
|
21431
22029
|
createOrgHonorTemplate(request: CreateOrgHonorTemplateRequest): Promise<CreateOrgHonorTemplateResponse>;
|
|
22030
|
+
createPersonalTodoTaskWithOptions(tmpReq: CreatePersonalTodoTaskRequest, tmpHeader: CreatePersonalTodoTaskHeaders, runtime: $Util.RuntimeOptions): Promise<CreatePersonalTodoTaskResponse>;
|
|
22031
|
+
createPersonalTodoTask(request: CreatePersonalTodoTaskRequest): Promise<CreatePersonalTodoTaskResponse>;
|
|
21432
22032
|
createReportWithOptions(tmpReq: CreateReportRequest, tmpHeader: CreateReportHeaders, runtime: $Util.RuntimeOptions): Promise<CreateReportResponse>;
|
|
21433
22033
|
createReport(request: CreateReportRequest): Promise<CreateReportResponse>;
|
|
21434
22034
|
createScenegroupWithOptions(request: CreateScenegroupRequest, tmpHeader: CreateScenegroupHeaders, runtime: $Util.RuntimeOptions): Promise<CreateScenegroupResponse>;
|
|
21435
22035
|
createScenegroup(request: CreateScenegroupRequest): Promise<CreateScenegroupResponse>;
|
|
21436
22036
|
createScheduleConferenceWithOptions(tmpReq: CreateScheduleConferenceRequest, tmpHeader: CreateScheduleConferenceHeaders, runtime: $Util.RuntimeOptions): Promise<CreateScheduleConferenceResponse>;
|
|
21437
22037
|
createScheduleConference(request: CreateScheduleConferenceRequest): Promise<CreateScheduleConferenceResponse>;
|
|
22038
|
+
createSearchDomeWithOptions(tmpReq: CreateSearchDomeRequest, tmpHeader: CreateSearchDomeHeaders, runtime: $Util.RuntimeOptions): Promise<CreateSearchDomeResponse>;
|
|
22039
|
+
createSearchDome(request: CreateSearchDomeRequest): Promise<CreateSearchDomeResponse>;
|
|
22040
|
+
createSearchKeywordWithOptions(tmpReq: CreateSearchKeywordRequest, tmpHeader: CreateSearchKeywordHeaders, runtime: $Util.RuntimeOptions): Promise<CreateSearchKeywordResponse>;
|
|
22041
|
+
createSearchKeyword(request: CreateSearchKeywordRequest): Promise<CreateSearchKeywordResponse>;
|
|
21438
22042
|
createSheetWithOptions(tmpReq: CreateSheetRequest, tmpHeader: CreateSheetHeaders, runtime: $Util.RuntimeOptions): Promise<CreateSheetResponse>;
|
|
21439
22043
|
createSheet(request: CreateSheetRequest): Promise<CreateSheetResponse>;
|
|
21440
22044
|
createSubscribedCalendarWithOptions(tmpReq: CreateSubscribedCalendarRequest, tmpHeader: CreateSubscribedCalendarHeaders, runtime: $Util.RuntimeOptions): Promise<CreateSubscribedCalendarResponse>;
|
|
@@ -21489,6 +22093,8 @@ export default class Client extends OpenApi {
|
|
|
21489
22093
|
getCorpAccomplishmentTasks(request: GetCorpAccomplishmentTasksRequest): Promise<GetCorpAccomplishmentTasksResponse>;
|
|
21490
22094
|
getCorpTasksWithOptions(request: GetCorpTasksRequest, tmpHeader: GetCorpTasksHeaders, runtime: $Util.RuntimeOptions): Promise<GetCorpTasksResponse>;
|
|
21491
22095
|
getCorpTasks(request: GetCorpTasksRequest): Promise<GetCorpTasksResponse>;
|
|
22096
|
+
getDocContentWithOptions(tmpReq: GetDocContentRequest, tmpHeader: GetDocContentHeaders, runtime: $Util.RuntimeOptions): Promise<GetDocContentResponse>;
|
|
22097
|
+
getDocContent(request: GetDocContentRequest): Promise<GetDocContentResponse>;
|
|
21492
22098
|
getEventWithOptions(request: GetEventRequest, tmpHeader: GetEventHeaders, runtime: $Util.RuntimeOptions): Promise<GetEventResponse>;
|
|
21493
22099
|
getEvent(request: GetEventRequest): Promise<GetEventResponse>;
|
|
21494
22100
|
getFieldDefByUuidWithOptions(request: GetFieldDefByUuidRequest, tmpHeader: GetFieldDefByUuidHeaders, runtime: $Util.RuntimeOptions): Promise<GetFieldDefByUuidResponse>;
|
|
@@ -21507,6 +22113,8 @@ export default class Client extends OpenApi {
|
|
|
21507
22113
|
getInstances(request: GetInstancesRequest): Promise<GetInstancesResponse>;
|
|
21508
22114
|
getInstancesByIdListWithOptions(request: GetInstancesByIdListRequest, tmpHeader: GetInstancesByIdListHeaders, runtime: $Util.RuntimeOptions): Promise<GetInstancesByIdListResponse>;
|
|
21509
22115
|
getInstancesByIdList(request: GetInstancesByIdListRequest): Promise<GetInstancesByIdListResponse>;
|
|
22116
|
+
getLiveReplayUrlWithOptions(tmpReq: GetLiveReplayUrlRequest, tmpHeader: GetLiveReplayUrlHeaders, runtime: $Util.RuntimeOptions): Promise<GetLiveReplayUrlResponse>;
|
|
22117
|
+
getLiveReplayUrl(request: GetLiveReplayUrlRequest): Promise<GetLiveReplayUrlResponse>;
|
|
21510
22118
|
getMeCorpSubmissionWithOptions(request: GetMeCorpSubmissionRequest, tmpHeader: GetMeCorpSubmissionHeaders, runtime: $Util.RuntimeOptions): Promise<GetMeCorpSubmissionResponse>;
|
|
21511
22119
|
getMeCorpSubmission(request: GetMeCorpSubmissionRequest): Promise<GetMeCorpSubmissionResponse>;
|
|
21512
22120
|
getMeetingRoomsScheduleWithOptions(tmpReq: GetMeetingRoomsScheduleRequest, tmpHeader: GetMeetingRoomsScheduleHeaders, runtime: $Util.RuntimeOptions): Promise<GetMeetingRoomsScheduleResponse>;
|