@alicloud/aliding20230426 2.12.0 → 2.13.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 +537 -0
- package/dist/client.js +912 -32
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1261 -179
package/src/client.ts
CHANGED
|
@@ -2440,6 +2440,150 @@ export class ClearDataResponse extends $tea.Model {
|
|
|
2440
2440
|
}
|
|
2441
2441
|
}
|
|
2442
2442
|
|
|
2443
|
+
export class CloseVideoConferenceHeaders extends $tea.Model {
|
|
2444
|
+
commonHeaders?: { [key: string]: string };
|
|
2445
|
+
accountContext?: CloseVideoConferenceHeadersAccountContext;
|
|
2446
|
+
static names(): { [key: string]: string } {
|
|
2447
|
+
return {
|
|
2448
|
+
commonHeaders: 'commonHeaders',
|
|
2449
|
+
accountContext: 'AccountContext',
|
|
2450
|
+
};
|
|
2451
|
+
}
|
|
2452
|
+
|
|
2453
|
+
static types(): { [key: string]: any } {
|
|
2454
|
+
return {
|
|
2455
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2456
|
+
accountContext: CloseVideoConferenceHeadersAccountContext,
|
|
2457
|
+
};
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
constructor(map?: { [key: string]: any }) {
|
|
2461
|
+
super(map);
|
|
2462
|
+
}
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2465
|
+
export class CloseVideoConferenceShrinkHeaders extends $tea.Model {
|
|
2466
|
+
commonHeaders?: { [key: string]: string };
|
|
2467
|
+
accountContextShrink?: string;
|
|
2468
|
+
static names(): { [key: string]: string } {
|
|
2469
|
+
return {
|
|
2470
|
+
commonHeaders: 'commonHeaders',
|
|
2471
|
+
accountContextShrink: 'AccountContext',
|
|
2472
|
+
};
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2475
|
+
static types(): { [key: string]: any } {
|
|
2476
|
+
return {
|
|
2477
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2478
|
+
accountContextShrink: 'string',
|
|
2479
|
+
};
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2482
|
+
constructor(map?: { [key: string]: any }) {
|
|
2483
|
+
super(map);
|
|
2484
|
+
}
|
|
2485
|
+
}
|
|
2486
|
+
|
|
2487
|
+
export class CloseVideoConferenceRequest extends $tea.Model {
|
|
2488
|
+
tenantContext?: CloseVideoConferenceRequestTenantContext;
|
|
2489
|
+
conferenceId?: string;
|
|
2490
|
+
static names(): { [key: string]: string } {
|
|
2491
|
+
return {
|
|
2492
|
+
tenantContext: 'TenantContext',
|
|
2493
|
+
conferenceId: 'conferenceId',
|
|
2494
|
+
};
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
static types(): { [key: string]: any } {
|
|
2498
|
+
return {
|
|
2499
|
+
tenantContext: CloseVideoConferenceRequestTenantContext,
|
|
2500
|
+
conferenceId: 'string',
|
|
2501
|
+
};
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
constructor(map?: { [key: string]: any }) {
|
|
2505
|
+
super(map);
|
|
2506
|
+
}
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
export class CloseVideoConferenceShrinkRequest extends $tea.Model {
|
|
2510
|
+
tenantContextShrink?: string;
|
|
2511
|
+
conferenceId?: string;
|
|
2512
|
+
static names(): { [key: string]: string } {
|
|
2513
|
+
return {
|
|
2514
|
+
tenantContextShrink: 'TenantContext',
|
|
2515
|
+
conferenceId: 'conferenceId',
|
|
2516
|
+
};
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2519
|
+
static types(): { [key: string]: any } {
|
|
2520
|
+
return {
|
|
2521
|
+
tenantContextShrink: 'string',
|
|
2522
|
+
conferenceId: 'string',
|
|
2523
|
+
};
|
|
2524
|
+
}
|
|
2525
|
+
|
|
2526
|
+
constructor(map?: { [key: string]: any }) {
|
|
2527
|
+
super(map);
|
|
2528
|
+
}
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2531
|
+
export class CloseVideoConferenceResponseBody extends $tea.Model {
|
|
2532
|
+
cause?: string;
|
|
2533
|
+
code?: number;
|
|
2534
|
+
requestId?: string;
|
|
2535
|
+
vendorRequestId?: string;
|
|
2536
|
+
vendorType?: string;
|
|
2537
|
+
static names(): { [key: string]: string } {
|
|
2538
|
+
return {
|
|
2539
|
+
cause: 'cause',
|
|
2540
|
+
code: 'code',
|
|
2541
|
+
requestId: 'requestId',
|
|
2542
|
+
vendorRequestId: 'vendorRequestId',
|
|
2543
|
+
vendorType: 'vendorType',
|
|
2544
|
+
};
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2547
|
+
static types(): { [key: string]: any } {
|
|
2548
|
+
return {
|
|
2549
|
+
cause: 'string',
|
|
2550
|
+
code: 'number',
|
|
2551
|
+
requestId: 'string',
|
|
2552
|
+
vendorRequestId: 'string',
|
|
2553
|
+
vendorType: 'string',
|
|
2554
|
+
};
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
constructor(map?: { [key: string]: any }) {
|
|
2558
|
+
super(map);
|
|
2559
|
+
}
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2562
|
+
export class CloseVideoConferenceResponse extends $tea.Model {
|
|
2563
|
+
headers?: { [key: string]: string };
|
|
2564
|
+
statusCode?: number;
|
|
2565
|
+
body?: CloseVideoConferenceResponseBody;
|
|
2566
|
+
static names(): { [key: string]: string } {
|
|
2567
|
+
return {
|
|
2568
|
+
headers: 'headers',
|
|
2569
|
+
statusCode: 'statusCode',
|
|
2570
|
+
body: 'body',
|
|
2571
|
+
};
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
static types(): { [key: string]: any } {
|
|
2575
|
+
return {
|
|
2576
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2577
|
+
statusCode: 'number',
|
|
2578
|
+
body: CloseVideoConferenceResponseBody,
|
|
2579
|
+
};
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2582
|
+
constructor(map?: { [key: string]: any }) {
|
|
2583
|
+
super(map);
|
|
2584
|
+
}
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2443
2587
|
export class CommentListReportHeaders extends $tea.Model {
|
|
2444
2588
|
commonHeaders?: { [key: string]: string };
|
|
2445
2589
|
accountContext?: CommentListReportHeadersAccountContext;
|
|
@@ -19794,9 +19938,9 @@ export class QueryMeetingRoomListResponse extends $tea.Model {
|
|
|
19794
19938
|
}
|
|
19795
19939
|
}
|
|
19796
19940
|
|
|
19797
|
-
export class
|
|
19941
|
+
export class QueryMinutesSummaryHeaders extends $tea.Model {
|
|
19798
19942
|
commonHeaders?: { [key: string]: string };
|
|
19799
|
-
accountContext?:
|
|
19943
|
+
accountContext?: QueryMinutesSummaryHeadersAccountContext;
|
|
19800
19944
|
static names(): { [key: string]: string } {
|
|
19801
19945
|
return {
|
|
19802
19946
|
commonHeaders: 'commonHeaders',
|
|
@@ -19807,7 +19951,7 @@ export class QueryOrgHonorsHeaders extends $tea.Model {
|
|
|
19807
19951
|
static types(): { [key: string]: any } {
|
|
19808
19952
|
return {
|
|
19809
19953
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19810
|
-
accountContext:
|
|
19954
|
+
accountContext: QueryMinutesSummaryHeadersAccountContext,
|
|
19811
19955
|
};
|
|
19812
19956
|
}
|
|
19813
19957
|
|
|
@@ -19816,7 +19960,7 @@ export class QueryOrgHonorsHeaders extends $tea.Model {
|
|
|
19816
19960
|
}
|
|
19817
19961
|
}
|
|
19818
19962
|
|
|
19819
|
-
export class
|
|
19963
|
+
export class QueryMinutesSummaryShrinkHeaders extends $tea.Model {
|
|
19820
19964
|
commonHeaders?: { [key: string]: string };
|
|
19821
19965
|
accountContextShrink?: string;
|
|
19822
19966
|
static names(): { [key: string]: string } {
|
|
@@ -19838,26 +19982,176 @@ export class QueryOrgHonorsShrinkHeaders extends $tea.Model {
|
|
|
19838
19982
|
}
|
|
19839
19983
|
}
|
|
19840
19984
|
|
|
19841
|
-
export class
|
|
19842
|
-
tenantContext?:
|
|
19985
|
+
export class QueryMinutesSummaryRequest extends $tea.Model {
|
|
19986
|
+
tenantContext?: QueryMinutesSummaryRequestTenantContext;
|
|
19987
|
+
conferenceId?: string;
|
|
19988
|
+
summaryTypeList?: string[];
|
|
19989
|
+
static names(): { [key: string]: string } {
|
|
19990
|
+
return {
|
|
19991
|
+
tenantContext: 'TenantContext',
|
|
19992
|
+
conferenceId: 'conferenceId',
|
|
19993
|
+
summaryTypeList: 'summaryTypeList',
|
|
19994
|
+
};
|
|
19995
|
+
}
|
|
19996
|
+
|
|
19997
|
+
static types(): { [key: string]: any } {
|
|
19998
|
+
return {
|
|
19999
|
+
tenantContext: QueryMinutesSummaryRequestTenantContext,
|
|
20000
|
+
conferenceId: 'string',
|
|
20001
|
+
summaryTypeList: { 'type': 'array', 'itemType': 'string' },
|
|
20002
|
+
};
|
|
20003
|
+
}
|
|
20004
|
+
|
|
20005
|
+
constructor(map?: { [key: string]: any }) {
|
|
20006
|
+
super(map);
|
|
20007
|
+
}
|
|
20008
|
+
}
|
|
20009
|
+
|
|
20010
|
+
export class QueryMinutesSummaryShrinkRequest extends $tea.Model {
|
|
20011
|
+
tenantContextShrink?: string;
|
|
20012
|
+
conferenceId?: string;
|
|
20013
|
+
summaryTypeListShrink?: string;
|
|
20014
|
+
static names(): { [key: string]: string } {
|
|
20015
|
+
return {
|
|
20016
|
+
tenantContextShrink: 'TenantContext',
|
|
20017
|
+
conferenceId: 'conferenceId',
|
|
20018
|
+
summaryTypeListShrink: 'summaryTypeList',
|
|
20019
|
+
};
|
|
20020
|
+
}
|
|
20021
|
+
|
|
20022
|
+
static types(): { [key: string]: any } {
|
|
20023
|
+
return {
|
|
20024
|
+
tenantContextShrink: 'string',
|
|
20025
|
+
conferenceId: 'string',
|
|
20026
|
+
summaryTypeListShrink: 'string',
|
|
20027
|
+
};
|
|
20028
|
+
}
|
|
20029
|
+
|
|
20030
|
+
constructor(map?: { [key: string]: any }) {
|
|
20031
|
+
super(map);
|
|
20032
|
+
}
|
|
20033
|
+
}
|
|
20034
|
+
|
|
20035
|
+
export class QueryMinutesSummaryResponseBody extends $tea.Model {
|
|
20036
|
+
requestId?: string;
|
|
20037
|
+
summary?: QueryMinutesSummaryResponseBodySummary;
|
|
20038
|
+
vendorRequestId?: string;
|
|
20039
|
+
vendorType?: string;
|
|
20040
|
+
static names(): { [key: string]: string } {
|
|
20041
|
+
return {
|
|
20042
|
+
requestId: 'requestId',
|
|
20043
|
+
summary: 'summary',
|
|
20044
|
+
vendorRequestId: 'vendorRequestId',
|
|
20045
|
+
vendorType: 'vendorType',
|
|
20046
|
+
};
|
|
20047
|
+
}
|
|
20048
|
+
|
|
20049
|
+
static types(): { [key: string]: any } {
|
|
20050
|
+
return {
|
|
20051
|
+
requestId: 'string',
|
|
20052
|
+
summary: QueryMinutesSummaryResponseBodySummary,
|
|
20053
|
+
vendorRequestId: 'string',
|
|
20054
|
+
vendorType: 'string',
|
|
20055
|
+
};
|
|
20056
|
+
}
|
|
20057
|
+
|
|
20058
|
+
constructor(map?: { [key: string]: any }) {
|
|
20059
|
+
super(map);
|
|
20060
|
+
}
|
|
20061
|
+
}
|
|
20062
|
+
|
|
20063
|
+
export class QueryMinutesSummaryResponse extends $tea.Model {
|
|
20064
|
+
headers?: { [key: string]: string };
|
|
20065
|
+
statusCode?: number;
|
|
20066
|
+
body?: QueryMinutesSummaryResponseBody;
|
|
20067
|
+
static names(): { [key: string]: string } {
|
|
20068
|
+
return {
|
|
20069
|
+
headers: 'headers',
|
|
20070
|
+
statusCode: 'statusCode',
|
|
20071
|
+
body: 'body',
|
|
20072
|
+
};
|
|
20073
|
+
}
|
|
20074
|
+
|
|
20075
|
+
static types(): { [key: string]: any } {
|
|
20076
|
+
return {
|
|
20077
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20078
|
+
statusCode: 'number',
|
|
20079
|
+
body: QueryMinutesSummaryResponseBody,
|
|
20080
|
+
};
|
|
20081
|
+
}
|
|
20082
|
+
|
|
20083
|
+
constructor(map?: { [key: string]: any }) {
|
|
20084
|
+
super(map);
|
|
20085
|
+
}
|
|
20086
|
+
}
|
|
20087
|
+
|
|
20088
|
+
export class QueryMinutesTextHeaders extends $tea.Model {
|
|
20089
|
+
commonHeaders?: { [key: string]: string };
|
|
20090
|
+
accountContext?: QueryMinutesTextHeadersAccountContext;
|
|
20091
|
+
static names(): { [key: string]: string } {
|
|
20092
|
+
return {
|
|
20093
|
+
commonHeaders: 'commonHeaders',
|
|
20094
|
+
accountContext: 'AccountContext',
|
|
20095
|
+
};
|
|
20096
|
+
}
|
|
20097
|
+
|
|
20098
|
+
static types(): { [key: string]: any } {
|
|
20099
|
+
return {
|
|
20100
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20101
|
+
accountContext: QueryMinutesTextHeadersAccountContext,
|
|
20102
|
+
};
|
|
20103
|
+
}
|
|
20104
|
+
|
|
20105
|
+
constructor(map?: { [key: string]: any }) {
|
|
20106
|
+
super(map);
|
|
20107
|
+
}
|
|
20108
|
+
}
|
|
20109
|
+
|
|
20110
|
+
export class QueryMinutesTextShrinkHeaders extends $tea.Model {
|
|
20111
|
+
commonHeaders?: { [key: string]: string };
|
|
20112
|
+
accountContextShrink?: string;
|
|
20113
|
+
static names(): { [key: string]: string } {
|
|
20114
|
+
return {
|
|
20115
|
+
commonHeaders: 'commonHeaders',
|
|
20116
|
+
accountContextShrink: 'AccountContext',
|
|
20117
|
+
};
|
|
20118
|
+
}
|
|
20119
|
+
|
|
20120
|
+
static types(): { [key: string]: any } {
|
|
20121
|
+
return {
|
|
20122
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20123
|
+
accountContextShrink: 'string',
|
|
20124
|
+
};
|
|
20125
|
+
}
|
|
20126
|
+
|
|
20127
|
+
constructor(map?: { [key: string]: any }) {
|
|
20128
|
+
super(map);
|
|
20129
|
+
}
|
|
20130
|
+
}
|
|
20131
|
+
|
|
20132
|
+
export class QueryMinutesTextRequest extends $tea.Model {
|
|
20133
|
+
tenantContext?: QueryMinutesTextRequestTenantContext;
|
|
20134
|
+
conferenceId?: string;
|
|
20135
|
+
direction?: string;
|
|
19843
20136
|
maxResults?: number;
|
|
19844
20137
|
nextToken?: string;
|
|
19845
|
-
orgId?: number;
|
|
19846
20138
|
static names(): { [key: string]: string } {
|
|
19847
20139
|
return {
|
|
19848
20140
|
tenantContext: 'TenantContext',
|
|
20141
|
+
conferenceId: 'conferenceId',
|
|
20142
|
+
direction: 'direction',
|
|
19849
20143
|
maxResults: 'maxResults',
|
|
19850
20144
|
nextToken: 'nextToken',
|
|
19851
|
-
orgId: 'orgId',
|
|
19852
20145
|
};
|
|
19853
20146
|
}
|
|
19854
20147
|
|
|
19855
20148
|
static types(): { [key: string]: any } {
|
|
19856
20149
|
return {
|
|
19857
|
-
tenantContext:
|
|
20150
|
+
tenantContext: QueryMinutesTextRequestTenantContext,
|
|
20151
|
+
conferenceId: 'string',
|
|
20152
|
+
direction: 'string',
|
|
19858
20153
|
maxResults: 'number',
|
|
19859
20154
|
nextToken: 'string',
|
|
19860
|
-
orgId: 'number',
|
|
19861
20155
|
};
|
|
19862
20156
|
}
|
|
19863
20157
|
|
|
@@ -19866,26 +20160,29 @@ export class QueryOrgHonorsRequest extends $tea.Model {
|
|
|
19866
20160
|
}
|
|
19867
20161
|
}
|
|
19868
20162
|
|
|
19869
|
-
export class
|
|
20163
|
+
export class QueryMinutesTextShrinkRequest extends $tea.Model {
|
|
19870
20164
|
tenantContextShrink?: string;
|
|
20165
|
+
conferenceId?: string;
|
|
20166
|
+
direction?: string;
|
|
19871
20167
|
maxResults?: number;
|
|
19872
20168
|
nextToken?: string;
|
|
19873
|
-
orgId?: number;
|
|
19874
20169
|
static names(): { [key: string]: string } {
|
|
19875
20170
|
return {
|
|
19876
20171
|
tenantContextShrink: 'TenantContext',
|
|
20172
|
+
conferenceId: 'conferenceId',
|
|
20173
|
+
direction: 'direction',
|
|
19877
20174
|
maxResults: 'maxResults',
|
|
19878
20175
|
nextToken: 'nextToken',
|
|
19879
|
-
orgId: 'orgId',
|
|
19880
20176
|
};
|
|
19881
20177
|
}
|
|
19882
20178
|
|
|
19883
20179
|
static types(): { [key: string]: any } {
|
|
19884
20180
|
return {
|
|
19885
20181
|
tenantContextShrink: 'string',
|
|
20182
|
+
conferenceId: 'string',
|
|
20183
|
+
direction: 'string',
|
|
19886
20184
|
maxResults: 'number',
|
|
19887
20185
|
nextToken: 'string',
|
|
19888
|
-
orgId: 'number',
|
|
19889
20186
|
};
|
|
19890
20187
|
}
|
|
19891
20188
|
|
|
@@ -19894,23 +20191,32 @@ export class QueryOrgHonorsShrinkRequest extends $tea.Model {
|
|
|
19894
20191
|
}
|
|
19895
20192
|
}
|
|
19896
20193
|
|
|
19897
|
-
export class
|
|
20194
|
+
export class QueryMinutesTextResponseBody extends $tea.Model {
|
|
20195
|
+
hasMore?: boolean;
|
|
19898
20196
|
nextToken?: string;
|
|
19899
|
-
|
|
20197
|
+
paragraphList?: QueryMinutesTextResponseBodyParagraphList[];
|
|
19900
20198
|
requestId?: string;
|
|
20199
|
+
vendorRequestId?: string;
|
|
20200
|
+
vendorType?: string;
|
|
19901
20201
|
static names(): { [key: string]: string } {
|
|
19902
20202
|
return {
|
|
20203
|
+
hasMore: 'hasMore',
|
|
19903
20204
|
nextToken: 'nextToken',
|
|
19904
|
-
|
|
20205
|
+
paragraphList: 'paragraphList',
|
|
19905
20206
|
requestId: 'requestId',
|
|
20207
|
+
vendorRequestId: 'vendorRequestId',
|
|
20208
|
+
vendorType: 'vendorType',
|
|
19906
20209
|
};
|
|
19907
20210
|
}
|
|
19908
20211
|
|
|
19909
20212
|
static types(): { [key: string]: any } {
|
|
19910
20213
|
return {
|
|
20214
|
+
hasMore: 'boolean',
|
|
19911
20215
|
nextToken: 'string',
|
|
19912
|
-
|
|
20216
|
+
paragraphList: { 'type': 'array', 'itemType': QueryMinutesTextResponseBodyParagraphList },
|
|
19913
20217
|
requestId: 'string',
|
|
20218
|
+
vendorRequestId: 'string',
|
|
20219
|
+
vendorType: 'string',
|
|
19914
20220
|
};
|
|
19915
20221
|
}
|
|
19916
20222
|
|
|
@@ -19919,10 +20225,10 @@ export class QueryOrgHonorsResponseBody extends $tea.Model {
|
|
|
19919
20225
|
}
|
|
19920
20226
|
}
|
|
19921
20227
|
|
|
19922
|
-
export class
|
|
20228
|
+
export class QueryMinutesTextResponse extends $tea.Model {
|
|
19923
20229
|
headers?: { [key: string]: string };
|
|
19924
20230
|
statusCode?: number;
|
|
19925
|
-
body?:
|
|
20231
|
+
body?: QueryMinutesTextResponseBody;
|
|
19926
20232
|
static names(): { [key: string]: string } {
|
|
19927
20233
|
return {
|
|
19928
20234
|
headers: 'headers',
|
|
@@ -19935,7 +20241,7 @@ export class QueryOrgHonorsResponse extends $tea.Model {
|
|
|
19935
20241
|
return {
|
|
19936
20242
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19937
20243
|
statusCode: 'number',
|
|
19938
|
-
body:
|
|
20244
|
+
body: QueryMinutesTextResponseBody,
|
|
19939
20245
|
};
|
|
19940
20246
|
}
|
|
19941
20247
|
|
|
@@ -19944,9 +20250,9 @@ export class QueryOrgHonorsResponse extends $tea.Model {
|
|
|
19944
20250
|
}
|
|
19945
20251
|
}
|
|
19946
20252
|
|
|
19947
|
-
export class
|
|
20253
|
+
export class QueryOrgHonorsHeaders extends $tea.Model {
|
|
19948
20254
|
commonHeaders?: { [key: string]: string };
|
|
19949
|
-
accountContext?:
|
|
20255
|
+
accountContext?: QueryOrgHonorsHeadersAccountContext;
|
|
19950
20256
|
static names(): { [key: string]: string } {
|
|
19951
20257
|
return {
|
|
19952
20258
|
commonHeaders: 'commonHeaders',
|
|
@@ -19957,7 +20263,7 @@ export class QueryOrgTodoTasksHeaders extends $tea.Model {
|
|
|
19957
20263
|
static types(): { [key: string]: any } {
|
|
19958
20264
|
return {
|
|
19959
20265
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19960
|
-
accountContext:
|
|
20266
|
+
accountContext: QueryOrgHonorsHeadersAccountContext,
|
|
19961
20267
|
};
|
|
19962
20268
|
}
|
|
19963
20269
|
|
|
@@ -19966,7 +20272,7 @@ export class QueryOrgTodoTasksHeaders extends $tea.Model {
|
|
|
19966
20272
|
}
|
|
19967
20273
|
}
|
|
19968
20274
|
|
|
19969
|
-
export class
|
|
20275
|
+
export class QueryOrgHonorsShrinkHeaders extends $tea.Model {
|
|
19970
20276
|
commonHeaders?: { [key: string]: string };
|
|
19971
20277
|
accountContextShrink?: string;
|
|
19972
20278
|
static names(): { [key: string]: string } {
|
|
@@ -19988,23 +20294,26 @@ export class QueryOrgTodoTasksShrinkHeaders extends $tea.Model {
|
|
|
19988
20294
|
}
|
|
19989
20295
|
}
|
|
19990
20296
|
|
|
19991
|
-
export class
|
|
19992
|
-
tenantContext?:
|
|
19993
|
-
|
|
20297
|
+
export class QueryOrgHonorsRequest extends $tea.Model {
|
|
20298
|
+
tenantContext?: QueryOrgHonorsRequestTenantContext;
|
|
20299
|
+
maxResults?: number;
|
|
19994
20300
|
nextToken?: string;
|
|
20301
|
+
orgId?: number;
|
|
19995
20302
|
static names(): { [key: string]: string } {
|
|
19996
20303
|
return {
|
|
19997
20304
|
tenantContext: 'TenantContext',
|
|
19998
|
-
|
|
20305
|
+
maxResults: 'maxResults',
|
|
19999
20306
|
nextToken: 'nextToken',
|
|
20307
|
+
orgId: 'orgId',
|
|
20000
20308
|
};
|
|
20001
20309
|
}
|
|
20002
20310
|
|
|
20003
20311
|
static types(): { [key: string]: any } {
|
|
20004
20312
|
return {
|
|
20005
|
-
tenantContext:
|
|
20006
|
-
|
|
20313
|
+
tenantContext: QueryOrgHonorsRequestTenantContext,
|
|
20314
|
+
maxResults: 'number',
|
|
20007
20315
|
nextToken: 'string',
|
|
20316
|
+
orgId: 'number',
|
|
20008
20317
|
};
|
|
20009
20318
|
}
|
|
20010
20319
|
|
|
@@ -20013,23 +20322,26 @@ export class QueryOrgTodoTasksRequest extends $tea.Model {
|
|
|
20013
20322
|
}
|
|
20014
20323
|
}
|
|
20015
20324
|
|
|
20016
|
-
export class
|
|
20325
|
+
export class QueryOrgHonorsShrinkRequest extends $tea.Model {
|
|
20017
20326
|
tenantContextShrink?: string;
|
|
20018
|
-
|
|
20327
|
+
maxResults?: number;
|
|
20019
20328
|
nextToken?: string;
|
|
20329
|
+
orgId?: number;
|
|
20020
20330
|
static names(): { [key: string]: string } {
|
|
20021
20331
|
return {
|
|
20022
20332
|
tenantContextShrink: 'TenantContext',
|
|
20023
|
-
|
|
20333
|
+
maxResults: 'maxResults',
|
|
20024
20334
|
nextToken: 'nextToken',
|
|
20335
|
+
orgId: 'orgId',
|
|
20025
20336
|
};
|
|
20026
20337
|
}
|
|
20027
20338
|
|
|
20028
20339
|
static types(): { [key: string]: any } {
|
|
20029
20340
|
return {
|
|
20030
20341
|
tenantContextShrink: 'string',
|
|
20031
|
-
|
|
20342
|
+
maxResults: 'number',
|
|
20032
20343
|
nextToken: 'string',
|
|
20344
|
+
orgId: 'number',
|
|
20033
20345
|
};
|
|
20034
20346
|
}
|
|
20035
20347
|
|
|
@@ -20038,23 +20350,23 @@ export class QueryOrgTodoTasksShrinkRequest extends $tea.Model {
|
|
|
20038
20350
|
}
|
|
20039
20351
|
}
|
|
20040
20352
|
|
|
20041
|
-
export class
|
|
20353
|
+
export class QueryOrgHonorsResponseBody extends $tea.Model {
|
|
20042
20354
|
nextToken?: string;
|
|
20355
|
+
openHonors?: QueryOrgHonorsResponseBodyOpenHonors[];
|
|
20043
20356
|
requestId?: string;
|
|
20044
|
-
todoCards?: QueryOrgTodoTasksResponseBodyTodoCards[];
|
|
20045
20357
|
static names(): { [key: string]: string } {
|
|
20046
20358
|
return {
|
|
20047
20359
|
nextToken: 'nextToken',
|
|
20360
|
+
openHonors: 'openHonors',
|
|
20048
20361
|
requestId: 'requestId',
|
|
20049
|
-
todoCards: 'todoCards',
|
|
20050
20362
|
};
|
|
20051
20363
|
}
|
|
20052
20364
|
|
|
20053
20365
|
static types(): { [key: string]: any } {
|
|
20054
20366
|
return {
|
|
20055
20367
|
nextToken: 'string',
|
|
20368
|
+
openHonors: { 'type': 'array', 'itemType': QueryOrgHonorsResponseBodyOpenHonors },
|
|
20056
20369
|
requestId: 'string',
|
|
20057
|
-
todoCards: { 'type': 'array', 'itemType': QueryOrgTodoTasksResponseBodyTodoCards },
|
|
20058
20370
|
};
|
|
20059
20371
|
}
|
|
20060
20372
|
|
|
@@ -20063,10 +20375,10 @@ export class QueryOrgTodoTasksResponseBody extends $tea.Model {
|
|
|
20063
20375
|
}
|
|
20064
20376
|
}
|
|
20065
20377
|
|
|
20066
|
-
export class
|
|
20378
|
+
export class QueryOrgHonorsResponse extends $tea.Model {
|
|
20067
20379
|
headers?: { [key: string]: string };
|
|
20068
20380
|
statusCode?: number;
|
|
20069
|
-
body?:
|
|
20381
|
+
body?: QueryOrgHonorsResponseBody;
|
|
20070
20382
|
static names(): { [key: string]: string } {
|
|
20071
20383
|
return {
|
|
20072
20384
|
headers: 'headers',
|
|
@@ -20079,7 +20391,7 @@ export class QueryOrgTodoTasksResponse extends $tea.Model {
|
|
|
20079
20391
|
return {
|
|
20080
20392
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20081
20393
|
statusCode: 'number',
|
|
20082
|
-
body:
|
|
20394
|
+
body: QueryOrgHonorsResponseBody,
|
|
20083
20395
|
};
|
|
20084
20396
|
}
|
|
20085
20397
|
|
|
@@ -20088,9 +20400,9 @@ export class QueryOrgTodoTasksResponse extends $tea.Model {
|
|
|
20088
20400
|
}
|
|
20089
20401
|
}
|
|
20090
20402
|
|
|
20091
|
-
export class
|
|
20403
|
+
export class QueryOrgTodoTasksHeaders extends $tea.Model {
|
|
20092
20404
|
commonHeaders?: { [key: string]: string };
|
|
20093
|
-
accountContext?:
|
|
20405
|
+
accountContext?: QueryOrgTodoTasksHeadersAccountContext;
|
|
20094
20406
|
static names(): { [key: string]: string } {
|
|
20095
20407
|
return {
|
|
20096
20408
|
commonHeaders: 'commonHeaders',
|
|
@@ -20101,7 +20413,7 @@ export class QueryReportDetailHeaders extends $tea.Model {
|
|
|
20101
20413
|
static types(): { [key: string]: any } {
|
|
20102
20414
|
return {
|
|
20103
20415
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20104
|
-
accountContext:
|
|
20416
|
+
accountContext: QueryOrgTodoTasksHeadersAccountContext,
|
|
20105
20417
|
};
|
|
20106
20418
|
}
|
|
20107
20419
|
|
|
@@ -20110,7 +20422,7 @@ export class QueryReportDetailHeaders extends $tea.Model {
|
|
|
20110
20422
|
}
|
|
20111
20423
|
}
|
|
20112
20424
|
|
|
20113
|
-
export class
|
|
20425
|
+
export class QueryOrgTodoTasksShrinkHeaders extends $tea.Model {
|
|
20114
20426
|
commonHeaders?: { [key: string]: string };
|
|
20115
20427
|
accountContextShrink?: string;
|
|
20116
20428
|
static names(): { [key: string]: string } {
|
|
@@ -20132,20 +20444,23 @@ export class QueryReportDetailShrinkHeaders extends $tea.Model {
|
|
|
20132
20444
|
}
|
|
20133
20445
|
}
|
|
20134
20446
|
|
|
20135
|
-
export class
|
|
20136
|
-
|
|
20137
|
-
|
|
20447
|
+
export class QueryOrgTodoTasksRequest extends $tea.Model {
|
|
20448
|
+
tenantContext?: QueryOrgTodoTasksRequestTenantContext;
|
|
20449
|
+
isDone?: boolean;
|
|
20450
|
+
nextToken?: string;
|
|
20138
20451
|
static names(): { [key: string]: string } {
|
|
20139
20452
|
return {
|
|
20140
|
-
reportId: 'ReportId',
|
|
20141
20453
|
tenantContext: 'TenantContext',
|
|
20454
|
+
isDone: 'isDone',
|
|
20455
|
+
nextToken: 'nextToken',
|
|
20142
20456
|
};
|
|
20143
20457
|
}
|
|
20144
20458
|
|
|
20145
20459
|
static types(): { [key: string]: any } {
|
|
20146
20460
|
return {
|
|
20147
|
-
|
|
20148
|
-
|
|
20461
|
+
tenantContext: QueryOrgTodoTasksRequestTenantContext,
|
|
20462
|
+
isDone: 'boolean',
|
|
20463
|
+
nextToken: 'string',
|
|
20149
20464
|
};
|
|
20150
20465
|
}
|
|
20151
20466
|
|
|
@@ -20154,20 +20469,23 @@ export class QueryReportDetailRequest extends $tea.Model {
|
|
|
20154
20469
|
}
|
|
20155
20470
|
}
|
|
20156
20471
|
|
|
20157
|
-
export class
|
|
20158
|
-
reportId?: string;
|
|
20472
|
+
export class QueryOrgTodoTasksShrinkRequest extends $tea.Model {
|
|
20159
20473
|
tenantContextShrink?: string;
|
|
20474
|
+
isDone?: boolean;
|
|
20475
|
+
nextToken?: string;
|
|
20160
20476
|
static names(): { [key: string]: string } {
|
|
20161
20477
|
return {
|
|
20162
|
-
reportId: 'ReportId',
|
|
20163
20478
|
tenantContextShrink: 'TenantContext',
|
|
20479
|
+
isDone: 'isDone',
|
|
20480
|
+
nextToken: 'nextToken',
|
|
20164
20481
|
};
|
|
20165
20482
|
}
|
|
20166
20483
|
|
|
20167
20484
|
static types(): { [key: string]: any } {
|
|
20168
20485
|
return {
|
|
20169
|
-
reportId: 'string',
|
|
20170
20486
|
tenantContextShrink: 'string',
|
|
20487
|
+
isDone: 'boolean',
|
|
20488
|
+
nextToken: 'string',
|
|
20171
20489
|
};
|
|
20172
20490
|
}
|
|
20173
20491
|
|
|
@@ -20176,50 +20494,23 @@ export class QueryReportDetailShrinkRequest extends $tea.Model {
|
|
|
20176
20494
|
}
|
|
20177
20495
|
}
|
|
20178
20496
|
|
|
20179
|
-
export class
|
|
20180
|
-
|
|
20181
|
-
createTime?: number;
|
|
20182
|
-
creatorId?: string;
|
|
20183
|
-
creatorName?: string;
|
|
20184
|
-
deptName?: string;
|
|
20185
|
-
modifiedTime?: number;
|
|
20186
|
-
remark?: string;
|
|
20187
|
-
reportId?: string;
|
|
20497
|
+
export class QueryOrgTodoTasksResponseBody extends $tea.Model {
|
|
20498
|
+
nextToken?: string;
|
|
20188
20499
|
requestId?: string;
|
|
20189
|
-
|
|
20190
|
-
vendorRequestId?: string;
|
|
20191
|
-
vendorType?: string;
|
|
20500
|
+
todoCards?: QueryOrgTodoTasksResponseBodyTodoCards[];
|
|
20192
20501
|
static names(): { [key: string]: string } {
|
|
20193
20502
|
return {
|
|
20194
|
-
|
|
20195
|
-
createTime: 'createTime',
|
|
20196
|
-
creatorId: 'creatorId',
|
|
20197
|
-
creatorName: 'creatorName',
|
|
20198
|
-
deptName: 'deptName',
|
|
20199
|
-
modifiedTime: 'modifiedTime',
|
|
20200
|
-
remark: 'remark',
|
|
20201
|
-
reportId: 'reportId',
|
|
20503
|
+
nextToken: 'nextToken',
|
|
20202
20504
|
requestId: 'requestId',
|
|
20203
|
-
|
|
20204
|
-
vendorRequestId: 'vendorRequestId',
|
|
20205
|
-
vendorType: 'vendorType',
|
|
20505
|
+
todoCards: 'todoCards',
|
|
20206
20506
|
};
|
|
20207
20507
|
}
|
|
20208
20508
|
|
|
20209
20509
|
static types(): { [key: string]: any } {
|
|
20210
20510
|
return {
|
|
20211
|
-
|
|
20212
|
-
createTime: 'number',
|
|
20213
|
-
creatorId: 'string',
|
|
20214
|
-
creatorName: 'string',
|
|
20215
|
-
deptName: 'string',
|
|
20216
|
-
modifiedTime: 'number',
|
|
20217
|
-
remark: 'string',
|
|
20218
|
-
reportId: 'string',
|
|
20511
|
+
nextToken: 'string',
|
|
20219
20512
|
requestId: 'string',
|
|
20220
|
-
|
|
20221
|
-
vendorRequestId: 'string',
|
|
20222
|
-
vendorType: 'string',
|
|
20513
|
+
todoCards: { 'type': 'array', 'itemType': QueryOrgTodoTasksResponseBodyTodoCards },
|
|
20223
20514
|
};
|
|
20224
20515
|
}
|
|
20225
20516
|
|
|
@@ -20228,10 +20519,10 @@ export class QueryReportDetailResponseBody extends $tea.Model {
|
|
|
20228
20519
|
}
|
|
20229
20520
|
}
|
|
20230
20521
|
|
|
20231
|
-
export class
|
|
20522
|
+
export class QueryOrgTodoTasksResponse extends $tea.Model {
|
|
20232
20523
|
headers?: { [key: string]: string };
|
|
20233
20524
|
statusCode?: number;
|
|
20234
|
-
body?:
|
|
20525
|
+
body?: QueryOrgTodoTasksResponseBody;
|
|
20235
20526
|
static names(): { [key: string]: string } {
|
|
20236
20527
|
return {
|
|
20237
20528
|
headers: 'headers',
|
|
@@ -20244,7 +20535,7 @@ export class QueryReportDetailResponse extends $tea.Model {
|
|
|
20244
20535
|
return {
|
|
20245
20536
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20246
20537
|
statusCode: 'number',
|
|
20247
|
-
body:
|
|
20538
|
+
body: QueryOrgTodoTasksResponseBody,
|
|
20248
20539
|
};
|
|
20249
20540
|
}
|
|
20250
20541
|
|
|
@@ -20253,9 +20544,9 @@ export class QueryReportDetailResponse extends $tea.Model {
|
|
|
20253
20544
|
}
|
|
20254
20545
|
}
|
|
20255
20546
|
|
|
20256
|
-
export class
|
|
20547
|
+
export class QueryReportDetailHeaders extends $tea.Model {
|
|
20257
20548
|
commonHeaders?: { [key: string]: string };
|
|
20258
|
-
accountContext?:
|
|
20549
|
+
accountContext?: QueryReportDetailHeadersAccountContext;
|
|
20259
20550
|
static names(): { [key: string]: string } {
|
|
20260
20551
|
return {
|
|
20261
20552
|
commonHeaders: 'commonHeaders',
|
|
@@ -20266,7 +20557,7 @@ export class QueryScheduleConferenceHeaders extends $tea.Model {
|
|
|
20266
20557
|
static types(): { [key: string]: any } {
|
|
20267
20558
|
return {
|
|
20268
20559
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20269
|
-
accountContext:
|
|
20560
|
+
accountContext: QueryReportDetailHeadersAccountContext,
|
|
20270
20561
|
};
|
|
20271
20562
|
}
|
|
20272
20563
|
|
|
@@ -20275,7 +20566,7 @@ export class QueryScheduleConferenceHeaders extends $tea.Model {
|
|
|
20275
20566
|
}
|
|
20276
20567
|
}
|
|
20277
20568
|
|
|
20278
|
-
export class
|
|
20569
|
+
export class QueryReportDetailShrinkHeaders extends $tea.Model {
|
|
20279
20570
|
commonHeaders?: { [key: string]: string };
|
|
20280
20571
|
accountContextShrink?: string;
|
|
20281
20572
|
static names(): { [key: string]: string } {
|
|
@@ -20297,20 +20588,20 @@ export class QueryScheduleConferenceShrinkHeaders extends $tea.Model {
|
|
|
20297
20588
|
}
|
|
20298
20589
|
}
|
|
20299
20590
|
|
|
20300
|
-
export class
|
|
20301
|
-
|
|
20302
|
-
|
|
20591
|
+
export class QueryReportDetailRequest extends $tea.Model {
|
|
20592
|
+
reportId?: string;
|
|
20593
|
+
tenantContext?: QueryReportDetailRequestTenantContext;
|
|
20303
20594
|
static names(): { [key: string]: string } {
|
|
20304
20595
|
return {
|
|
20596
|
+
reportId: 'ReportId',
|
|
20305
20597
|
tenantContext: 'TenantContext',
|
|
20306
|
-
scheduleConferenceId: 'scheduleConferenceId',
|
|
20307
20598
|
};
|
|
20308
20599
|
}
|
|
20309
20600
|
|
|
20310
20601
|
static types(): { [key: string]: any } {
|
|
20311
20602
|
return {
|
|
20312
|
-
|
|
20313
|
-
|
|
20603
|
+
reportId: 'string',
|
|
20604
|
+
tenantContext: QueryReportDetailRequestTenantContext,
|
|
20314
20605
|
};
|
|
20315
20606
|
}
|
|
20316
20607
|
|
|
@@ -20319,20 +20610,20 @@ export class QueryScheduleConferenceRequest extends $tea.Model {
|
|
|
20319
20610
|
}
|
|
20320
20611
|
}
|
|
20321
20612
|
|
|
20322
|
-
export class
|
|
20613
|
+
export class QueryReportDetailShrinkRequest extends $tea.Model {
|
|
20614
|
+
reportId?: string;
|
|
20323
20615
|
tenantContextShrink?: string;
|
|
20324
|
-
scheduleConferenceId?: string;
|
|
20325
20616
|
static names(): { [key: string]: string } {
|
|
20326
20617
|
return {
|
|
20618
|
+
reportId: 'ReportId',
|
|
20327
20619
|
tenantContextShrink: 'TenantContext',
|
|
20328
|
-
scheduleConferenceId: 'scheduleConferenceId',
|
|
20329
20620
|
};
|
|
20330
20621
|
}
|
|
20331
20622
|
|
|
20332
20623
|
static types(): { [key: string]: any } {
|
|
20333
20624
|
return {
|
|
20625
|
+
reportId: 'string',
|
|
20334
20626
|
tenantContextShrink: 'string',
|
|
20335
|
-
scheduleConferenceId: 'string',
|
|
20336
20627
|
};
|
|
20337
20628
|
}
|
|
20338
20629
|
|
|
@@ -20341,38 +20632,50 @@ export class QueryScheduleConferenceShrinkRequest extends $tea.Model {
|
|
|
20341
20632
|
}
|
|
20342
20633
|
}
|
|
20343
20634
|
|
|
20344
|
-
export class
|
|
20345
|
-
|
|
20346
|
-
|
|
20635
|
+
export class QueryReportDetailResponseBody extends $tea.Model {
|
|
20636
|
+
content?: QueryReportDetailResponseBodyContent[];
|
|
20637
|
+
createTime?: number;
|
|
20638
|
+
creatorId?: string;
|
|
20639
|
+
creatorName?: string;
|
|
20640
|
+
deptName?: string;
|
|
20641
|
+
modifiedTime?: number;
|
|
20642
|
+
remark?: string;
|
|
20643
|
+
reportId?: string;
|
|
20347
20644
|
requestId?: string;
|
|
20348
|
-
|
|
20349
|
-
|
|
20350
|
-
|
|
20351
|
-
title?: string;
|
|
20352
|
-
url?: string;
|
|
20645
|
+
templateName?: string;
|
|
20646
|
+
vendorRequestId?: string;
|
|
20647
|
+
vendorType?: string;
|
|
20353
20648
|
static names(): { [key: string]: string } {
|
|
20354
20649
|
return {
|
|
20355
|
-
|
|
20356
|
-
|
|
20650
|
+
content: 'content',
|
|
20651
|
+
createTime: 'createTime',
|
|
20652
|
+
creatorId: 'creatorId',
|
|
20653
|
+
creatorName: 'creatorName',
|
|
20654
|
+
deptName: 'deptName',
|
|
20655
|
+
modifiedTime: 'modifiedTime',
|
|
20656
|
+
remark: 'remark',
|
|
20657
|
+
reportId: 'reportId',
|
|
20357
20658
|
requestId: 'requestId',
|
|
20358
|
-
|
|
20359
|
-
|
|
20360
|
-
|
|
20361
|
-
title: 'title',
|
|
20362
|
-
url: 'url',
|
|
20659
|
+
templateName: 'templateName',
|
|
20660
|
+
vendorRequestId: 'vendorRequestId',
|
|
20661
|
+
vendorType: 'vendorType',
|
|
20363
20662
|
};
|
|
20364
20663
|
}
|
|
20365
20664
|
|
|
20366
20665
|
static types(): { [key: string]: any } {
|
|
20367
20666
|
return {
|
|
20368
|
-
|
|
20369
|
-
|
|
20667
|
+
content: { 'type': 'array', 'itemType': QueryReportDetailResponseBodyContent },
|
|
20668
|
+
createTime: 'number',
|
|
20669
|
+
creatorId: 'string',
|
|
20670
|
+
creatorName: 'string',
|
|
20671
|
+
deptName: 'string',
|
|
20672
|
+
modifiedTime: 'number',
|
|
20673
|
+
remark: 'string',
|
|
20674
|
+
reportId: 'string',
|
|
20370
20675
|
requestId: 'string',
|
|
20371
|
-
|
|
20372
|
-
|
|
20373
|
-
|
|
20374
|
-
title: 'string',
|
|
20375
|
-
url: 'string',
|
|
20676
|
+
templateName: 'string',
|
|
20677
|
+
vendorRequestId: 'string',
|
|
20678
|
+
vendorType: 'string',
|
|
20376
20679
|
};
|
|
20377
20680
|
}
|
|
20378
20681
|
|
|
@@ -20381,10 +20684,10 @@ export class QueryScheduleConferenceResponseBody extends $tea.Model {
|
|
|
20381
20684
|
}
|
|
20382
20685
|
}
|
|
20383
20686
|
|
|
20384
|
-
export class
|
|
20687
|
+
export class QueryReportDetailResponse extends $tea.Model {
|
|
20385
20688
|
headers?: { [key: string]: string };
|
|
20386
20689
|
statusCode?: number;
|
|
20387
|
-
body?:
|
|
20690
|
+
body?: QueryReportDetailResponseBody;
|
|
20388
20691
|
static names(): { [key: string]: string } {
|
|
20389
20692
|
return {
|
|
20390
20693
|
headers: 'headers',
|
|
@@ -20397,7 +20700,7 @@ export class QueryScheduleConferenceResponse extends $tea.Model {
|
|
|
20397
20700
|
return {
|
|
20398
20701
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20399
20702
|
statusCode: 'number',
|
|
20400
|
-
body:
|
|
20703
|
+
body: QueryReportDetailResponseBody,
|
|
20401
20704
|
};
|
|
20402
20705
|
}
|
|
20403
20706
|
|
|
@@ -20406,9 +20709,9 @@ export class QueryScheduleConferenceResponse extends $tea.Model {
|
|
|
20406
20709
|
}
|
|
20407
20710
|
}
|
|
20408
20711
|
|
|
20409
|
-
export class
|
|
20712
|
+
export class QueryScheduleConferenceHeaders extends $tea.Model {
|
|
20410
20713
|
commonHeaders?: { [key: string]: string };
|
|
20411
|
-
accountContext?:
|
|
20714
|
+
accountContext?: QueryScheduleConferenceHeadersAccountContext;
|
|
20412
20715
|
static names(): { [key: string]: string } {
|
|
20413
20716
|
return {
|
|
20414
20717
|
commonHeaders: 'commonHeaders',
|
|
@@ -20419,7 +20722,7 @@ export class QueryScheduleConferenceInfoHeaders extends $tea.Model {
|
|
|
20419
20722
|
static types(): { [key: string]: any } {
|
|
20420
20723
|
return {
|
|
20421
20724
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20422
|
-
accountContext:
|
|
20725
|
+
accountContext: QueryScheduleConferenceHeadersAccountContext,
|
|
20423
20726
|
};
|
|
20424
20727
|
}
|
|
20425
20728
|
|
|
@@ -20428,7 +20731,7 @@ export class QueryScheduleConferenceInfoHeaders extends $tea.Model {
|
|
|
20428
20731
|
}
|
|
20429
20732
|
}
|
|
20430
20733
|
|
|
20431
|
-
export class
|
|
20734
|
+
export class QueryScheduleConferenceShrinkHeaders extends $tea.Model {
|
|
20432
20735
|
commonHeaders?: { [key: string]: string };
|
|
20433
20736
|
accountContextShrink?: string;
|
|
20434
20737
|
static names(): { [key: string]: string } {
|
|
@@ -20450,26 +20753,20 @@ export class QueryScheduleConferenceInfoShrinkHeaders extends $tea.Model {
|
|
|
20450
20753
|
}
|
|
20451
20754
|
}
|
|
20452
20755
|
|
|
20453
|
-
export class
|
|
20454
|
-
|
|
20455
|
-
nextToken?: string;
|
|
20756
|
+
export class QueryScheduleConferenceRequest extends $tea.Model {
|
|
20757
|
+
tenantContext?: QueryScheduleConferenceRequestTenantContext;
|
|
20456
20758
|
scheduleConferenceId?: string;
|
|
20457
|
-
tenantContext?: QueryScheduleConferenceInfoRequestTenantContext;
|
|
20458
20759
|
static names(): { [key: string]: string } {
|
|
20459
20760
|
return {
|
|
20460
|
-
maxResults: 'MaxResults',
|
|
20461
|
-
nextToken: 'NextToken',
|
|
20462
|
-
scheduleConferenceId: 'ScheduleConferenceId',
|
|
20463
20761
|
tenantContext: 'TenantContext',
|
|
20762
|
+
scheduleConferenceId: 'scheduleConferenceId',
|
|
20464
20763
|
};
|
|
20465
20764
|
}
|
|
20466
20765
|
|
|
20467
20766
|
static types(): { [key: string]: any } {
|
|
20468
20767
|
return {
|
|
20469
|
-
|
|
20470
|
-
nextToken: 'string',
|
|
20768
|
+
tenantContext: QueryScheduleConferenceRequestTenantContext,
|
|
20471
20769
|
scheduleConferenceId: 'string',
|
|
20472
|
-
tenantContext: QueryScheduleConferenceInfoRequestTenantContext,
|
|
20473
20770
|
};
|
|
20474
20771
|
}
|
|
20475
20772
|
|
|
@@ -20478,26 +20775,20 @@ export class QueryScheduleConferenceInfoRequest extends $tea.Model {
|
|
|
20478
20775
|
}
|
|
20479
20776
|
}
|
|
20480
20777
|
|
|
20481
|
-
export class
|
|
20482
|
-
maxResults?: number;
|
|
20483
|
-
nextToken?: string;
|
|
20484
|
-
scheduleConferenceId?: string;
|
|
20778
|
+
export class QueryScheduleConferenceShrinkRequest extends $tea.Model {
|
|
20485
20779
|
tenantContextShrink?: string;
|
|
20780
|
+
scheduleConferenceId?: string;
|
|
20486
20781
|
static names(): { [key: string]: string } {
|
|
20487
20782
|
return {
|
|
20488
|
-
maxResults: 'MaxResults',
|
|
20489
|
-
nextToken: 'NextToken',
|
|
20490
|
-
scheduleConferenceId: 'ScheduleConferenceId',
|
|
20491
20783
|
tenantContextShrink: 'TenantContext',
|
|
20784
|
+
scheduleConferenceId: 'scheduleConferenceId',
|
|
20492
20785
|
};
|
|
20493
20786
|
}
|
|
20494
20787
|
|
|
20495
20788
|
static types(): { [key: string]: any } {
|
|
20496
20789
|
return {
|
|
20497
|
-
maxResults: 'number',
|
|
20498
|
-
nextToken: 'string',
|
|
20499
|
-
scheduleConferenceId: 'string',
|
|
20500
20790
|
tenantContextShrink: 'string',
|
|
20791
|
+
scheduleConferenceId: 'string',
|
|
20501
20792
|
};
|
|
20502
20793
|
}
|
|
20503
20794
|
|
|
@@ -20506,32 +20797,38 @@ export class QueryScheduleConferenceInfoShrinkRequest extends $tea.Model {
|
|
|
20506
20797
|
}
|
|
20507
20798
|
}
|
|
20508
20799
|
|
|
20509
|
-
export class
|
|
20510
|
-
|
|
20511
|
-
|
|
20800
|
+
export class QueryScheduleConferenceResponseBody extends $tea.Model {
|
|
20801
|
+
endTime?: number;
|
|
20802
|
+
phones?: string[];
|
|
20512
20803
|
requestId?: string;
|
|
20513
|
-
|
|
20514
|
-
|
|
20515
|
-
|
|
20804
|
+
roomCode?: string;
|
|
20805
|
+
scheduleConferenceId?: string;
|
|
20806
|
+
startTime?: number;
|
|
20807
|
+
title?: string;
|
|
20808
|
+
url?: string;
|
|
20516
20809
|
static names(): { [key: string]: string } {
|
|
20517
20810
|
return {
|
|
20518
|
-
|
|
20519
|
-
|
|
20811
|
+
endTime: 'endTime',
|
|
20812
|
+
phones: 'phones',
|
|
20520
20813
|
requestId: 'requestId',
|
|
20521
|
-
|
|
20522
|
-
|
|
20523
|
-
|
|
20814
|
+
roomCode: 'roomCode',
|
|
20815
|
+
scheduleConferenceId: 'scheduleConferenceId',
|
|
20816
|
+
startTime: 'startTime',
|
|
20817
|
+
title: 'title',
|
|
20818
|
+
url: 'url',
|
|
20524
20819
|
};
|
|
20525
20820
|
}
|
|
20526
20821
|
|
|
20527
20822
|
static types(): { [key: string]: any } {
|
|
20528
20823
|
return {
|
|
20529
|
-
|
|
20530
|
-
|
|
20824
|
+
endTime: 'number',
|
|
20825
|
+
phones: { 'type': 'array', 'itemType': 'string' },
|
|
20531
20826
|
requestId: 'string',
|
|
20532
|
-
|
|
20533
|
-
|
|
20534
|
-
|
|
20827
|
+
roomCode: 'string',
|
|
20828
|
+
scheduleConferenceId: 'string',
|
|
20829
|
+
startTime: 'number',
|
|
20830
|
+
title: 'string',
|
|
20831
|
+
url: 'string',
|
|
20535
20832
|
};
|
|
20536
20833
|
}
|
|
20537
20834
|
|
|
@@ -20540,10 +20837,10 @@ export class QueryScheduleConferenceInfoResponseBody extends $tea.Model {
|
|
|
20540
20837
|
}
|
|
20541
20838
|
}
|
|
20542
20839
|
|
|
20543
|
-
export class
|
|
20840
|
+
export class QueryScheduleConferenceResponse extends $tea.Model {
|
|
20544
20841
|
headers?: { [key: string]: string };
|
|
20545
20842
|
statusCode?: number;
|
|
20546
|
-
body?:
|
|
20843
|
+
body?: QueryScheduleConferenceResponseBody;
|
|
20547
20844
|
static names(): { [key: string]: string } {
|
|
20548
20845
|
return {
|
|
20549
20846
|
headers: 'headers',
|
|
@@ -20556,7 +20853,7 @@ export class QueryScheduleConferenceInfoResponse extends $tea.Model {
|
|
|
20556
20853
|
return {
|
|
20557
20854
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20558
20855
|
statusCode: 'number',
|
|
20559
|
-
body:
|
|
20856
|
+
body: QueryScheduleConferenceResponseBody,
|
|
20560
20857
|
};
|
|
20561
20858
|
}
|
|
20562
20859
|
|
|
@@ -20565,9 +20862,9 @@ export class QueryScheduleConferenceInfoResponse extends $tea.Model {
|
|
|
20565
20862
|
}
|
|
20566
20863
|
}
|
|
20567
20864
|
|
|
20568
|
-
export class
|
|
20865
|
+
export class QueryScheduleConferenceInfoHeaders extends $tea.Model {
|
|
20569
20866
|
commonHeaders?: { [key: string]: string };
|
|
20570
|
-
accountContext?:
|
|
20867
|
+
accountContext?: QueryScheduleConferenceInfoHeadersAccountContext;
|
|
20571
20868
|
static names(): { [key: string]: string } {
|
|
20572
20869
|
return {
|
|
20573
20870
|
commonHeaders: 'commonHeaders',
|
|
@@ -20578,7 +20875,7 @@ export class QueryUserHonorsHeaders extends $tea.Model {
|
|
|
20578
20875
|
static types(): { [key: string]: any } {
|
|
20579
20876
|
return {
|
|
20580
20877
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20581
|
-
accountContext:
|
|
20878
|
+
accountContext: QueryScheduleConferenceInfoHeadersAccountContext,
|
|
20582
20879
|
};
|
|
20583
20880
|
}
|
|
20584
20881
|
|
|
@@ -20587,7 +20884,166 @@ export class QueryUserHonorsHeaders extends $tea.Model {
|
|
|
20587
20884
|
}
|
|
20588
20885
|
}
|
|
20589
20886
|
|
|
20590
|
-
export class
|
|
20887
|
+
export class QueryScheduleConferenceInfoShrinkHeaders extends $tea.Model {
|
|
20888
|
+
commonHeaders?: { [key: string]: string };
|
|
20889
|
+
accountContextShrink?: string;
|
|
20890
|
+
static names(): { [key: string]: string } {
|
|
20891
|
+
return {
|
|
20892
|
+
commonHeaders: 'commonHeaders',
|
|
20893
|
+
accountContextShrink: 'AccountContext',
|
|
20894
|
+
};
|
|
20895
|
+
}
|
|
20896
|
+
|
|
20897
|
+
static types(): { [key: string]: any } {
|
|
20898
|
+
return {
|
|
20899
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20900
|
+
accountContextShrink: 'string',
|
|
20901
|
+
};
|
|
20902
|
+
}
|
|
20903
|
+
|
|
20904
|
+
constructor(map?: { [key: string]: any }) {
|
|
20905
|
+
super(map);
|
|
20906
|
+
}
|
|
20907
|
+
}
|
|
20908
|
+
|
|
20909
|
+
export class QueryScheduleConferenceInfoRequest extends $tea.Model {
|
|
20910
|
+
maxResults?: number;
|
|
20911
|
+
nextToken?: string;
|
|
20912
|
+
scheduleConferenceId?: string;
|
|
20913
|
+
tenantContext?: QueryScheduleConferenceInfoRequestTenantContext;
|
|
20914
|
+
static names(): { [key: string]: string } {
|
|
20915
|
+
return {
|
|
20916
|
+
maxResults: 'MaxResults',
|
|
20917
|
+
nextToken: 'NextToken',
|
|
20918
|
+
scheduleConferenceId: 'ScheduleConferenceId',
|
|
20919
|
+
tenantContext: 'TenantContext',
|
|
20920
|
+
};
|
|
20921
|
+
}
|
|
20922
|
+
|
|
20923
|
+
static types(): { [key: string]: any } {
|
|
20924
|
+
return {
|
|
20925
|
+
maxResults: 'number',
|
|
20926
|
+
nextToken: 'string',
|
|
20927
|
+
scheduleConferenceId: 'string',
|
|
20928
|
+
tenantContext: QueryScheduleConferenceInfoRequestTenantContext,
|
|
20929
|
+
};
|
|
20930
|
+
}
|
|
20931
|
+
|
|
20932
|
+
constructor(map?: { [key: string]: any }) {
|
|
20933
|
+
super(map);
|
|
20934
|
+
}
|
|
20935
|
+
}
|
|
20936
|
+
|
|
20937
|
+
export class QueryScheduleConferenceInfoShrinkRequest extends $tea.Model {
|
|
20938
|
+
maxResults?: number;
|
|
20939
|
+
nextToken?: string;
|
|
20940
|
+
scheduleConferenceId?: string;
|
|
20941
|
+
tenantContextShrink?: string;
|
|
20942
|
+
static names(): { [key: string]: string } {
|
|
20943
|
+
return {
|
|
20944
|
+
maxResults: 'MaxResults',
|
|
20945
|
+
nextToken: 'NextToken',
|
|
20946
|
+
scheduleConferenceId: 'ScheduleConferenceId',
|
|
20947
|
+
tenantContextShrink: 'TenantContext',
|
|
20948
|
+
};
|
|
20949
|
+
}
|
|
20950
|
+
|
|
20951
|
+
static types(): { [key: string]: any } {
|
|
20952
|
+
return {
|
|
20953
|
+
maxResults: 'number',
|
|
20954
|
+
nextToken: 'string',
|
|
20955
|
+
scheduleConferenceId: 'string',
|
|
20956
|
+
tenantContextShrink: 'string',
|
|
20957
|
+
};
|
|
20958
|
+
}
|
|
20959
|
+
|
|
20960
|
+
constructor(map?: { [key: string]: any }) {
|
|
20961
|
+
super(map);
|
|
20962
|
+
}
|
|
20963
|
+
}
|
|
20964
|
+
|
|
20965
|
+
export class QueryScheduleConferenceInfoResponseBody extends $tea.Model {
|
|
20966
|
+
conferenceList?: QueryScheduleConferenceInfoResponseBodyConferenceList[];
|
|
20967
|
+
nextToken?: string;
|
|
20968
|
+
requestId?: string;
|
|
20969
|
+
totalCount?: number;
|
|
20970
|
+
vendorRequestId?: string;
|
|
20971
|
+
vendorType?: string;
|
|
20972
|
+
static names(): { [key: string]: string } {
|
|
20973
|
+
return {
|
|
20974
|
+
conferenceList: 'conferenceList',
|
|
20975
|
+
nextToken: 'nextToken',
|
|
20976
|
+
requestId: 'requestId',
|
|
20977
|
+
totalCount: 'totalCount',
|
|
20978
|
+
vendorRequestId: 'vendorRequestId',
|
|
20979
|
+
vendorType: 'vendorType',
|
|
20980
|
+
};
|
|
20981
|
+
}
|
|
20982
|
+
|
|
20983
|
+
static types(): { [key: string]: any } {
|
|
20984
|
+
return {
|
|
20985
|
+
conferenceList: { 'type': 'array', 'itemType': QueryScheduleConferenceInfoResponseBodyConferenceList },
|
|
20986
|
+
nextToken: 'string',
|
|
20987
|
+
requestId: 'string',
|
|
20988
|
+
totalCount: 'number',
|
|
20989
|
+
vendorRequestId: 'string',
|
|
20990
|
+
vendorType: 'string',
|
|
20991
|
+
};
|
|
20992
|
+
}
|
|
20993
|
+
|
|
20994
|
+
constructor(map?: { [key: string]: any }) {
|
|
20995
|
+
super(map);
|
|
20996
|
+
}
|
|
20997
|
+
}
|
|
20998
|
+
|
|
20999
|
+
export class QueryScheduleConferenceInfoResponse extends $tea.Model {
|
|
21000
|
+
headers?: { [key: string]: string };
|
|
21001
|
+
statusCode?: number;
|
|
21002
|
+
body?: QueryScheduleConferenceInfoResponseBody;
|
|
21003
|
+
static names(): { [key: string]: string } {
|
|
21004
|
+
return {
|
|
21005
|
+
headers: 'headers',
|
|
21006
|
+
statusCode: 'statusCode',
|
|
21007
|
+
body: 'body',
|
|
21008
|
+
};
|
|
21009
|
+
}
|
|
21010
|
+
|
|
21011
|
+
static types(): { [key: string]: any } {
|
|
21012
|
+
return {
|
|
21013
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21014
|
+
statusCode: 'number',
|
|
21015
|
+
body: QueryScheduleConferenceInfoResponseBody,
|
|
21016
|
+
};
|
|
21017
|
+
}
|
|
21018
|
+
|
|
21019
|
+
constructor(map?: { [key: string]: any }) {
|
|
21020
|
+
super(map);
|
|
21021
|
+
}
|
|
21022
|
+
}
|
|
21023
|
+
|
|
21024
|
+
export class QueryUserHonorsHeaders extends $tea.Model {
|
|
21025
|
+
commonHeaders?: { [key: string]: string };
|
|
21026
|
+
accountContext?: QueryUserHonorsHeadersAccountContext;
|
|
21027
|
+
static names(): { [key: string]: string } {
|
|
21028
|
+
return {
|
|
21029
|
+
commonHeaders: 'commonHeaders',
|
|
21030
|
+
accountContext: 'AccountContext',
|
|
21031
|
+
};
|
|
21032
|
+
}
|
|
21033
|
+
|
|
21034
|
+
static types(): { [key: string]: any } {
|
|
21035
|
+
return {
|
|
21036
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21037
|
+
accountContext: QueryUserHonorsHeadersAccountContext,
|
|
21038
|
+
};
|
|
21039
|
+
}
|
|
21040
|
+
|
|
21041
|
+
constructor(map?: { [key: string]: any }) {
|
|
21042
|
+
super(map);
|
|
21043
|
+
}
|
|
21044
|
+
}
|
|
21045
|
+
|
|
21046
|
+
export class QueryUserHonorsShrinkHeaders extends $tea.Model {
|
|
20591
21047
|
commonHeaders?: { [key: string]: string };
|
|
20592
21048
|
accountContextShrink?: string;
|
|
20593
21049
|
static names(): { [key: string]: string } {
|
|
@@ -28325,6 +28781,44 @@ export class ClearDataRequestTenantContext extends $tea.Model {
|
|
|
28325
28781
|
}
|
|
28326
28782
|
}
|
|
28327
28783
|
|
|
28784
|
+
export class CloseVideoConferenceHeadersAccountContext extends $tea.Model {
|
|
28785
|
+
accountId?: string;
|
|
28786
|
+
static names(): { [key: string]: string } {
|
|
28787
|
+
return {
|
|
28788
|
+
accountId: 'accountId',
|
|
28789
|
+
};
|
|
28790
|
+
}
|
|
28791
|
+
|
|
28792
|
+
static types(): { [key: string]: any } {
|
|
28793
|
+
return {
|
|
28794
|
+
accountId: 'string',
|
|
28795
|
+
};
|
|
28796
|
+
}
|
|
28797
|
+
|
|
28798
|
+
constructor(map?: { [key: string]: any }) {
|
|
28799
|
+
super(map);
|
|
28800
|
+
}
|
|
28801
|
+
}
|
|
28802
|
+
|
|
28803
|
+
export class CloseVideoConferenceRequestTenantContext extends $tea.Model {
|
|
28804
|
+
tenantId?: string;
|
|
28805
|
+
static names(): { [key: string]: string } {
|
|
28806
|
+
return {
|
|
28807
|
+
tenantId: 'tenantId',
|
|
28808
|
+
};
|
|
28809
|
+
}
|
|
28810
|
+
|
|
28811
|
+
static types(): { [key: string]: any } {
|
|
28812
|
+
return {
|
|
28813
|
+
tenantId: 'string',
|
|
28814
|
+
};
|
|
28815
|
+
}
|
|
28816
|
+
|
|
28817
|
+
constructor(map?: { [key: string]: any }) {
|
|
28818
|
+
super(map);
|
|
28819
|
+
}
|
|
28820
|
+
}
|
|
28821
|
+
|
|
28328
28822
|
export class CommentListReportHeadersAccountContext extends $tea.Model {
|
|
28329
28823
|
accountId?: string;
|
|
28330
28824
|
static names(): { [key: string]: string } {
|
|
@@ -39201,6 +39695,364 @@ export class QueryMeetingRoomListResponseBodyResult extends $tea.Model {
|
|
|
39201
39695
|
}
|
|
39202
39696
|
}
|
|
39203
39697
|
|
|
39698
|
+
export class QueryMinutesSummaryHeadersAccountContext extends $tea.Model {
|
|
39699
|
+
accountId?: string;
|
|
39700
|
+
static names(): { [key: string]: string } {
|
|
39701
|
+
return {
|
|
39702
|
+
accountId: 'accountId',
|
|
39703
|
+
};
|
|
39704
|
+
}
|
|
39705
|
+
|
|
39706
|
+
static types(): { [key: string]: any } {
|
|
39707
|
+
return {
|
|
39708
|
+
accountId: 'string',
|
|
39709
|
+
};
|
|
39710
|
+
}
|
|
39711
|
+
|
|
39712
|
+
constructor(map?: { [key: string]: any }) {
|
|
39713
|
+
super(map);
|
|
39714
|
+
}
|
|
39715
|
+
}
|
|
39716
|
+
|
|
39717
|
+
export class QueryMinutesSummaryRequestTenantContext extends $tea.Model {
|
|
39718
|
+
tenantId?: string;
|
|
39719
|
+
static names(): { [key: string]: string } {
|
|
39720
|
+
return {
|
|
39721
|
+
tenantId: 'tenantId',
|
|
39722
|
+
};
|
|
39723
|
+
}
|
|
39724
|
+
|
|
39725
|
+
static types(): { [key: string]: any } {
|
|
39726
|
+
return {
|
|
39727
|
+
tenantId: 'string',
|
|
39728
|
+
};
|
|
39729
|
+
}
|
|
39730
|
+
|
|
39731
|
+
constructor(map?: { [key: string]: any }) {
|
|
39732
|
+
super(map);
|
|
39733
|
+
}
|
|
39734
|
+
}
|
|
39735
|
+
|
|
39736
|
+
export class QueryMinutesSummaryResponseBodySummaryActions extends $tea.Model {
|
|
39737
|
+
end?: number;
|
|
39738
|
+
id?: number;
|
|
39739
|
+
sentenceId?: number;
|
|
39740
|
+
start?: number;
|
|
39741
|
+
text?: string;
|
|
39742
|
+
static names(): { [key: string]: string } {
|
|
39743
|
+
return {
|
|
39744
|
+
end: 'End',
|
|
39745
|
+
id: 'Id',
|
|
39746
|
+
sentenceId: 'SentenceId',
|
|
39747
|
+
start: 'Start',
|
|
39748
|
+
text: 'Text',
|
|
39749
|
+
};
|
|
39750
|
+
}
|
|
39751
|
+
|
|
39752
|
+
static types(): { [key: string]: any } {
|
|
39753
|
+
return {
|
|
39754
|
+
end: 'number',
|
|
39755
|
+
id: 'number',
|
|
39756
|
+
sentenceId: 'number',
|
|
39757
|
+
start: 'number',
|
|
39758
|
+
text: 'string',
|
|
39759
|
+
};
|
|
39760
|
+
}
|
|
39761
|
+
|
|
39762
|
+
constructor(map?: { [key: string]: any }) {
|
|
39763
|
+
super(map);
|
|
39764
|
+
}
|
|
39765
|
+
}
|
|
39766
|
+
|
|
39767
|
+
export class QueryMinutesSummaryResponseBodySummaryAutoChapters extends $tea.Model {
|
|
39768
|
+
end?: number;
|
|
39769
|
+
headline?: string;
|
|
39770
|
+
id?: number;
|
|
39771
|
+
start?: number;
|
|
39772
|
+
summary?: string;
|
|
39773
|
+
static names(): { [key: string]: string } {
|
|
39774
|
+
return {
|
|
39775
|
+
end: 'End',
|
|
39776
|
+
headline: 'Headline',
|
|
39777
|
+
id: 'Id',
|
|
39778
|
+
start: 'Start',
|
|
39779
|
+
summary: 'Summary',
|
|
39780
|
+
};
|
|
39781
|
+
}
|
|
39782
|
+
|
|
39783
|
+
static types(): { [key: string]: any } {
|
|
39784
|
+
return {
|
|
39785
|
+
end: 'number',
|
|
39786
|
+
headline: 'string',
|
|
39787
|
+
id: 'number',
|
|
39788
|
+
start: 'number',
|
|
39789
|
+
summary: 'string',
|
|
39790
|
+
};
|
|
39791
|
+
}
|
|
39792
|
+
|
|
39793
|
+
constructor(map?: { [key: string]: any }) {
|
|
39794
|
+
super(map);
|
|
39795
|
+
}
|
|
39796
|
+
}
|
|
39797
|
+
|
|
39798
|
+
export class QueryMinutesSummaryResponseBodySummaryConversationalSummary extends $tea.Model {
|
|
39799
|
+
speakerId?: string;
|
|
39800
|
+
speakerName?: string;
|
|
39801
|
+
summary?: string;
|
|
39802
|
+
static names(): { [key: string]: string } {
|
|
39803
|
+
return {
|
|
39804
|
+
speakerId: 'SpeakerId',
|
|
39805
|
+
speakerName: 'SpeakerName',
|
|
39806
|
+
summary: 'Summary',
|
|
39807
|
+
};
|
|
39808
|
+
}
|
|
39809
|
+
|
|
39810
|
+
static types(): { [key: string]: any } {
|
|
39811
|
+
return {
|
|
39812
|
+
speakerId: 'string',
|
|
39813
|
+
speakerName: 'string',
|
|
39814
|
+
summary: 'string',
|
|
39815
|
+
};
|
|
39816
|
+
}
|
|
39817
|
+
|
|
39818
|
+
constructor(map?: { [key: string]: any }) {
|
|
39819
|
+
super(map);
|
|
39820
|
+
}
|
|
39821
|
+
}
|
|
39822
|
+
|
|
39823
|
+
export class QueryMinutesSummaryResponseBodySummaryKeySentences extends $tea.Model {
|
|
39824
|
+
end?: number;
|
|
39825
|
+
id?: number;
|
|
39826
|
+
sentenceId?: number;
|
|
39827
|
+
start?: number;
|
|
39828
|
+
text?: string;
|
|
39829
|
+
static names(): { [key: string]: string } {
|
|
39830
|
+
return {
|
|
39831
|
+
end: 'End',
|
|
39832
|
+
id: 'Id',
|
|
39833
|
+
sentenceId: 'SentenceId',
|
|
39834
|
+
start: 'Start',
|
|
39835
|
+
text: 'Text',
|
|
39836
|
+
};
|
|
39837
|
+
}
|
|
39838
|
+
|
|
39839
|
+
static types(): { [key: string]: any } {
|
|
39840
|
+
return {
|
|
39841
|
+
end: 'number',
|
|
39842
|
+
id: 'number',
|
|
39843
|
+
sentenceId: 'number',
|
|
39844
|
+
start: 'number',
|
|
39845
|
+
text: 'string',
|
|
39846
|
+
};
|
|
39847
|
+
}
|
|
39848
|
+
|
|
39849
|
+
constructor(map?: { [key: string]: any }) {
|
|
39850
|
+
super(map);
|
|
39851
|
+
}
|
|
39852
|
+
}
|
|
39853
|
+
|
|
39854
|
+
export class QueryMinutesSummaryResponseBodySummaryQuestionsAnsweringSummary extends $tea.Model {
|
|
39855
|
+
answer?: string;
|
|
39856
|
+
question?: string;
|
|
39857
|
+
sentenceIdsOfAnswer?: number[];
|
|
39858
|
+
sentenceIdsOfQuestion?: number[];
|
|
39859
|
+
static names(): { [key: string]: string } {
|
|
39860
|
+
return {
|
|
39861
|
+
answer: 'Answer',
|
|
39862
|
+
question: 'Question',
|
|
39863
|
+
sentenceIdsOfAnswer: 'SentenceIdsOfAnswer',
|
|
39864
|
+
sentenceIdsOfQuestion: 'SentenceIdsOfQuestion',
|
|
39865
|
+
};
|
|
39866
|
+
}
|
|
39867
|
+
|
|
39868
|
+
static types(): { [key: string]: any } {
|
|
39869
|
+
return {
|
|
39870
|
+
answer: 'string',
|
|
39871
|
+
question: 'string',
|
|
39872
|
+
sentenceIdsOfAnswer: { 'type': 'array', 'itemType': 'number' },
|
|
39873
|
+
sentenceIdsOfQuestion: { 'type': 'array', 'itemType': 'number' },
|
|
39874
|
+
};
|
|
39875
|
+
}
|
|
39876
|
+
|
|
39877
|
+
constructor(map?: { [key: string]: any }) {
|
|
39878
|
+
super(map);
|
|
39879
|
+
}
|
|
39880
|
+
}
|
|
39881
|
+
|
|
39882
|
+
export class QueryMinutesSummaryResponseBodySummary extends $tea.Model {
|
|
39883
|
+
actions?: QueryMinutesSummaryResponseBodySummaryActions;
|
|
39884
|
+
autoChapters?: QueryMinutesSummaryResponseBodySummaryAutoChapters[];
|
|
39885
|
+
conversationalSummary?: QueryMinutesSummaryResponseBodySummaryConversationalSummary[];
|
|
39886
|
+
keySentences?: QueryMinutesSummaryResponseBodySummaryKeySentences;
|
|
39887
|
+
keywords?: string[];
|
|
39888
|
+
paragraphSummary?: string;
|
|
39889
|
+
questionsAnsweringSummary?: QueryMinutesSummaryResponseBodySummaryQuestionsAnsweringSummary[];
|
|
39890
|
+
static names(): { [key: string]: string } {
|
|
39891
|
+
return {
|
|
39892
|
+
actions: 'Actions',
|
|
39893
|
+
autoChapters: 'AutoChapters',
|
|
39894
|
+
conversationalSummary: 'ConversationalSummary',
|
|
39895
|
+
keySentences: 'KeySentences',
|
|
39896
|
+
keywords: 'Keywords',
|
|
39897
|
+
paragraphSummary: 'ParagraphSummary',
|
|
39898
|
+
questionsAnsweringSummary: 'QuestionsAnsweringSummary',
|
|
39899
|
+
};
|
|
39900
|
+
}
|
|
39901
|
+
|
|
39902
|
+
static types(): { [key: string]: any } {
|
|
39903
|
+
return {
|
|
39904
|
+
actions: QueryMinutesSummaryResponseBodySummaryActions,
|
|
39905
|
+
autoChapters: { 'type': 'array', 'itemType': QueryMinutesSummaryResponseBodySummaryAutoChapters },
|
|
39906
|
+
conversationalSummary: { 'type': 'array', 'itemType': QueryMinutesSummaryResponseBodySummaryConversationalSummary },
|
|
39907
|
+
keySentences: QueryMinutesSummaryResponseBodySummaryKeySentences,
|
|
39908
|
+
keywords: { 'type': 'array', 'itemType': 'string' },
|
|
39909
|
+
paragraphSummary: 'string',
|
|
39910
|
+
questionsAnsweringSummary: { 'type': 'array', 'itemType': QueryMinutesSummaryResponseBodySummaryQuestionsAnsweringSummary },
|
|
39911
|
+
};
|
|
39912
|
+
}
|
|
39913
|
+
|
|
39914
|
+
constructor(map?: { [key: string]: any }) {
|
|
39915
|
+
super(map);
|
|
39916
|
+
}
|
|
39917
|
+
}
|
|
39918
|
+
|
|
39919
|
+
export class QueryMinutesTextHeadersAccountContext extends $tea.Model {
|
|
39920
|
+
accountId?: string;
|
|
39921
|
+
static names(): { [key: string]: string } {
|
|
39922
|
+
return {
|
|
39923
|
+
accountId: 'accountId',
|
|
39924
|
+
};
|
|
39925
|
+
}
|
|
39926
|
+
|
|
39927
|
+
static types(): { [key: string]: any } {
|
|
39928
|
+
return {
|
|
39929
|
+
accountId: 'string',
|
|
39930
|
+
};
|
|
39931
|
+
}
|
|
39932
|
+
|
|
39933
|
+
constructor(map?: { [key: string]: any }) {
|
|
39934
|
+
super(map);
|
|
39935
|
+
}
|
|
39936
|
+
}
|
|
39937
|
+
|
|
39938
|
+
export class QueryMinutesTextRequestTenantContext extends $tea.Model {
|
|
39939
|
+
tenantId?: string;
|
|
39940
|
+
static names(): { [key: string]: string } {
|
|
39941
|
+
return {
|
|
39942
|
+
tenantId: 'tenantId',
|
|
39943
|
+
};
|
|
39944
|
+
}
|
|
39945
|
+
|
|
39946
|
+
static types(): { [key: string]: any } {
|
|
39947
|
+
return {
|
|
39948
|
+
tenantId: 'string',
|
|
39949
|
+
};
|
|
39950
|
+
}
|
|
39951
|
+
|
|
39952
|
+
constructor(map?: { [key: string]: any }) {
|
|
39953
|
+
super(map);
|
|
39954
|
+
}
|
|
39955
|
+
}
|
|
39956
|
+
|
|
39957
|
+
export class QueryMinutesTextResponseBodyParagraphListSentenceListWordList extends $tea.Model {
|
|
39958
|
+
endTime?: number;
|
|
39959
|
+
startTime?: number;
|
|
39960
|
+
word?: string;
|
|
39961
|
+
wordId?: string;
|
|
39962
|
+
static names(): { [key: string]: string } {
|
|
39963
|
+
return {
|
|
39964
|
+
endTime: 'EndTime',
|
|
39965
|
+
startTime: 'StartTime',
|
|
39966
|
+
word: 'Word',
|
|
39967
|
+
wordId: 'WordId',
|
|
39968
|
+
};
|
|
39969
|
+
}
|
|
39970
|
+
|
|
39971
|
+
static types(): { [key: string]: any } {
|
|
39972
|
+
return {
|
|
39973
|
+
endTime: 'number',
|
|
39974
|
+
startTime: 'number',
|
|
39975
|
+
word: 'string',
|
|
39976
|
+
wordId: 'string',
|
|
39977
|
+
};
|
|
39978
|
+
}
|
|
39979
|
+
|
|
39980
|
+
constructor(map?: { [key: string]: any }) {
|
|
39981
|
+
super(map);
|
|
39982
|
+
}
|
|
39983
|
+
}
|
|
39984
|
+
|
|
39985
|
+
export class QueryMinutesTextResponseBodyParagraphListSentenceList extends $tea.Model {
|
|
39986
|
+
endTime?: number;
|
|
39987
|
+
sentence?: string;
|
|
39988
|
+
startTime?: number;
|
|
39989
|
+
userId?: string;
|
|
39990
|
+
wordList?: QueryMinutesTextResponseBodyParagraphListSentenceListWordList[];
|
|
39991
|
+
static names(): { [key: string]: string } {
|
|
39992
|
+
return {
|
|
39993
|
+
endTime: 'EndTime',
|
|
39994
|
+
sentence: 'Sentence',
|
|
39995
|
+
startTime: 'StartTime',
|
|
39996
|
+
userId: 'UserId',
|
|
39997
|
+
wordList: 'WordList',
|
|
39998
|
+
};
|
|
39999
|
+
}
|
|
40000
|
+
|
|
40001
|
+
static types(): { [key: string]: any } {
|
|
40002
|
+
return {
|
|
40003
|
+
endTime: 'number',
|
|
40004
|
+
sentence: 'string',
|
|
40005
|
+
startTime: 'number',
|
|
40006
|
+
userId: 'string',
|
|
40007
|
+
wordList: { 'type': 'array', 'itemType': QueryMinutesTextResponseBodyParagraphListSentenceListWordList },
|
|
40008
|
+
};
|
|
40009
|
+
}
|
|
40010
|
+
|
|
40011
|
+
constructor(map?: { [key: string]: any }) {
|
|
40012
|
+
super(map);
|
|
40013
|
+
}
|
|
40014
|
+
}
|
|
40015
|
+
|
|
40016
|
+
export class QueryMinutesTextResponseBodyParagraphList extends $tea.Model {
|
|
40017
|
+
endTime?: number;
|
|
40018
|
+
nickName?: string;
|
|
40019
|
+
paragraph?: string;
|
|
40020
|
+
paragraphId?: number;
|
|
40021
|
+
recordId?: number;
|
|
40022
|
+
sentenceList?: QueryMinutesTextResponseBodyParagraphListSentenceList[];
|
|
40023
|
+
startTime?: number;
|
|
40024
|
+
userId?: string;
|
|
40025
|
+
static names(): { [key: string]: string } {
|
|
40026
|
+
return {
|
|
40027
|
+
endTime: 'EndTime',
|
|
40028
|
+
nickName: 'NickName',
|
|
40029
|
+
paragraph: 'Paragraph',
|
|
40030
|
+
paragraphId: 'ParagraphId',
|
|
40031
|
+
recordId: 'RecordId',
|
|
40032
|
+
sentenceList: 'SentenceList',
|
|
40033
|
+
startTime: 'StartTime',
|
|
40034
|
+
userId: 'UserId',
|
|
40035
|
+
};
|
|
40036
|
+
}
|
|
40037
|
+
|
|
40038
|
+
static types(): { [key: string]: any } {
|
|
40039
|
+
return {
|
|
40040
|
+
endTime: 'number',
|
|
40041
|
+
nickName: 'string',
|
|
40042
|
+
paragraph: 'string',
|
|
40043
|
+
paragraphId: 'number',
|
|
40044
|
+
recordId: 'number',
|
|
40045
|
+
sentenceList: { 'type': 'array', 'itemType': QueryMinutesTextResponseBodyParagraphListSentenceList },
|
|
40046
|
+
startTime: 'number',
|
|
40047
|
+
userId: 'string',
|
|
40048
|
+
};
|
|
40049
|
+
}
|
|
40050
|
+
|
|
40051
|
+
constructor(map?: { [key: string]: any }) {
|
|
40052
|
+
super(map);
|
|
40053
|
+
}
|
|
40054
|
+
}
|
|
40055
|
+
|
|
39204
40056
|
export class QueryOrgHonorsHeadersAccountContext extends $tea.Model {
|
|
39205
40057
|
accountId?: string;
|
|
39206
40058
|
static names(): { [key: string]: string } {
|
|
@@ -43200,6 +44052,76 @@ export default class Client extends OpenApi {
|
|
|
43200
44052
|
return await this.clearDataWithOptions(request, headers, runtime);
|
|
43201
44053
|
}
|
|
43202
44054
|
|
|
44055
|
+
/**
|
|
44056
|
+
* @summary 关闭视频会议
|
|
44057
|
+
*
|
|
44058
|
+
* @param tmpReq CloseVideoConferenceRequest
|
|
44059
|
+
* @param tmpHeader CloseVideoConferenceHeaders
|
|
44060
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
44061
|
+
* @return CloseVideoConferenceResponse
|
|
44062
|
+
*/
|
|
44063
|
+
async closeVideoConferenceWithOptions(tmpReq: CloseVideoConferenceRequest, tmpHeader: CloseVideoConferenceHeaders, runtime: $Util.RuntimeOptions): Promise<CloseVideoConferenceResponse> {
|
|
44064
|
+
Util.validateModel(tmpReq);
|
|
44065
|
+
let request = new CloseVideoConferenceShrinkRequest({ });
|
|
44066
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
44067
|
+
let headers = new CloseVideoConferenceShrinkHeaders({ });
|
|
44068
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
44069
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
44070
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
44071
|
+
}
|
|
44072
|
+
|
|
44073
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
44074
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
44075
|
+
}
|
|
44076
|
+
|
|
44077
|
+
let body : {[key: string ]: any} = { };
|
|
44078
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
44079
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
44080
|
+
}
|
|
44081
|
+
|
|
44082
|
+
if (!Util.isUnset(request.conferenceId)) {
|
|
44083
|
+
body["conferenceId"] = request.conferenceId;
|
|
44084
|
+
}
|
|
44085
|
+
|
|
44086
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
44087
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
44088
|
+
realHeaders = headers.commonHeaders;
|
|
44089
|
+
}
|
|
44090
|
+
|
|
44091
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
44092
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
44093
|
+
}
|
|
44094
|
+
|
|
44095
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
44096
|
+
headers: realHeaders,
|
|
44097
|
+
body: OpenApiUtil.parseToMap(body),
|
|
44098
|
+
});
|
|
44099
|
+
let params = new $OpenApi.Params({
|
|
44100
|
+
action: "CloseVideoConference",
|
|
44101
|
+
version: "2023-04-26",
|
|
44102
|
+
protocol: "HTTPS",
|
|
44103
|
+
pathname: `/dingtalk/v1/ysp/closeVideoConference`,
|
|
44104
|
+
method: "POST",
|
|
44105
|
+
authType: "AK",
|
|
44106
|
+
style: "ROA",
|
|
44107
|
+
reqBodyType: "formData",
|
|
44108
|
+
bodyType: "json",
|
|
44109
|
+
});
|
|
44110
|
+
return $tea.cast<CloseVideoConferenceResponse>(await this.callApi(params, req, runtime), new CloseVideoConferenceResponse({}));
|
|
44111
|
+
}
|
|
44112
|
+
|
|
44113
|
+
/**
|
|
44114
|
+
* @summary 关闭视频会议
|
|
44115
|
+
*
|
|
44116
|
+
* @param request CloseVideoConferenceRequest
|
|
44117
|
+
* @return CloseVideoConferenceResponse
|
|
44118
|
+
*/
|
|
44119
|
+
async closeVideoConference(request: CloseVideoConferenceRequest): Promise<CloseVideoConferenceResponse> {
|
|
44120
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
44121
|
+
let headers = new CloseVideoConferenceHeaders({ });
|
|
44122
|
+
return await this.closeVideoConferenceWithOptions(request, headers, runtime);
|
|
44123
|
+
}
|
|
44124
|
+
|
|
43203
44125
|
/**
|
|
43204
44126
|
* @summary 获取日志评论列表
|
|
43205
44127
|
*
|
|
@@ -52604,6 +53526,166 @@ export default class Client extends OpenApi {
|
|
|
52604
53526
|
return await this.queryMeetingRoomListWithOptions(request, headers, runtime);
|
|
52605
53527
|
}
|
|
52606
53528
|
|
|
53529
|
+
/**
|
|
53530
|
+
* @summary 查询会议闪记智能纪要
|
|
53531
|
+
*
|
|
53532
|
+
* @param tmpReq QueryMinutesSummaryRequest
|
|
53533
|
+
* @param tmpHeader QueryMinutesSummaryHeaders
|
|
53534
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
53535
|
+
* @return QueryMinutesSummaryResponse
|
|
53536
|
+
*/
|
|
53537
|
+
async queryMinutesSummaryWithOptions(tmpReq: QueryMinutesSummaryRequest, tmpHeader: QueryMinutesSummaryHeaders, runtime: $Util.RuntimeOptions): Promise<QueryMinutesSummaryResponse> {
|
|
53538
|
+
Util.validateModel(tmpReq);
|
|
53539
|
+
let request = new QueryMinutesSummaryShrinkRequest({ });
|
|
53540
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
53541
|
+
let headers = new QueryMinutesSummaryShrinkHeaders({ });
|
|
53542
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
53543
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
53544
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
53545
|
+
}
|
|
53546
|
+
|
|
53547
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
53548
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
53549
|
+
}
|
|
53550
|
+
|
|
53551
|
+
if (!Util.isUnset(tmpReq.summaryTypeList)) {
|
|
53552
|
+
request.summaryTypeListShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.summaryTypeList, "summaryTypeList", "json");
|
|
53553
|
+
}
|
|
53554
|
+
|
|
53555
|
+
let body : {[key: string ]: any} = { };
|
|
53556
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
53557
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
53558
|
+
}
|
|
53559
|
+
|
|
53560
|
+
if (!Util.isUnset(request.conferenceId)) {
|
|
53561
|
+
body["conferenceId"] = request.conferenceId;
|
|
53562
|
+
}
|
|
53563
|
+
|
|
53564
|
+
if (!Util.isUnset(request.summaryTypeListShrink)) {
|
|
53565
|
+
body["summaryTypeList"] = request.summaryTypeListShrink;
|
|
53566
|
+
}
|
|
53567
|
+
|
|
53568
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
53569
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
53570
|
+
realHeaders = headers.commonHeaders;
|
|
53571
|
+
}
|
|
53572
|
+
|
|
53573
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
53574
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
53575
|
+
}
|
|
53576
|
+
|
|
53577
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
53578
|
+
headers: realHeaders,
|
|
53579
|
+
body: OpenApiUtil.parseToMap(body),
|
|
53580
|
+
});
|
|
53581
|
+
let params = new $OpenApi.Params({
|
|
53582
|
+
action: "QueryMinutesSummary",
|
|
53583
|
+
version: "2023-04-26",
|
|
53584
|
+
protocol: "HTTPS",
|
|
53585
|
+
pathname: `/dingtalk/v1/ysp/queryMinutesSummary`,
|
|
53586
|
+
method: "POST",
|
|
53587
|
+
authType: "AK",
|
|
53588
|
+
style: "ROA",
|
|
53589
|
+
reqBodyType: "formData",
|
|
53590
|
+
bodyType: "json",
|
|
53591
|
+
});
|
|
53592
|
+
return $tea.cast<QueryMinutesSummaryResponse>(await this.callApi(params, req, runtime), new QueryMinutesSummaryResponse({}));
|
|
53593
|
+
}
|
|
53594
|
+
|
|
53595
|
+
/**
|
|
53596
|
+
* @summary 查询会议闪记智能纪要
|
|
53597
|
+
*
|
|
53598
|
+
* @param request QueryMinutesSummaryRequest
|
|
53599
|
+
* @return QueryMinutesSummaryResponse
|
|
53600
|
+
*/
|
|
53601
|
+
async queryMinutesSummary(request: QueryMinutesSummaryRequest): Promise<QueryMinutesSummaryResponse> {
|
|
53602
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
53603
|
+
let headers = new QueryMinutesSummaryHeaders({ });
|
|
53604
|
+
return await this.queryMinutesSummaryWithOptions(request, headers, runtime);
|
|
53605
|
+
}
|
|
53606
|
+
|
|
53607
|
+
/**
|
|
53608
|
+
* @summary 查询会议闪记的文本信息
|
|
53609
|
+
*
|
|
53610
|
+
* @param tmpReq QueryMinutesTextRequest
|
|
53611
|
+
* @param tmpHeader QueryMinutesTextHeaders
|
|
53612
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
53613
|
+
* @return QueryMinutesTextResponse
|
|
53614
|
+
*/
|
|
53615
|
+
async queryMinutesTextWithOptions(tmpReq: QueryMinutesTextRequest, tmpHeader: QueryMinutesTextHeaders, runtime: $Util.RuntimeOptions): Promise<QueryMinutesTextResponse> {
|
|
53616
|
+
Util.validateModel(tmpReq);
|
|
53617
|
+
let request = new QueryMinutesTextShrinkRequest({ });
|
|
53618
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
53619
|
+
let headers = new QueryMinutesTextShrinkHeaders({ });
|
|
53620
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
53621
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
53622
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
53623
|
+
}
|
|
53624
|
+
|
|
53625
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
53626
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
53627
|
+
}
|
|
53628
|
+
|
|
53629
|
+
let body : {[key: string ]: any} = { };
|
|
53630
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
53631
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
53632
|
+
}
|
|
53633
|
+
|
|
53634
|
+
if (!Util.isUnset(request.conferenceId)) {
|
|
53635
|
+
body["conferenceId"] = request.conferenceId;
|
|
53636
|
+
}
|
|
53637
|
+
|
|
53638
|
+
if (!Util.isUnset(request.direction)) {
|
|
53639
|
+
body["direction"] = request.direction;
|
|
53640
|
+
}
|
|
53641
|
+
|
|
53642
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
53643
|
+
body["maxResults"] = request.maxResults;
|
|
53644
|
+
}
|
|
53645
|
+
|
|
53646
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
53647
|
+
body["nextToken"] = request.nextToken;
|
|
53648
|
+
}
|
|
53649
|
+
|
|
53650
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
53651
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
53652
|
+
realHeaders = headers.commonHeaders;
|
|
53653
|
+
}
|
|
53654
|
+
|
|
53655
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
53656
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
53657
|
+
}
|
|
53658
|
+
|
|
53659
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
53660
|
+
headers: realHeaders,
|
|
53661
|
+
body: OpenApiUtil.parseToMap(body),
|
|
53662
|
+
});
|
|
53663
|
+
let params = new $OpenApi.Params({
|
|
53664
|
+
action: "QueryMinutesText",
|
|
53665
|
+
version: "2023-04-26",
|
|
53666
|
+
protocol: "HTTPS",
|
|
53667
|
+
pathname: `/dingtalk/v1/ysp/queryMinutesText`,
|
|
53668
|
+
method: "POST",
|
|
53669
|
+
authType: "AK",
|
|
53670
|
+
style: "ROA",
|
|
53671
|
+
reqBodyType: "formData",
|
|
53672
|
+
bodyType: "json",
|
|
53673
|
+
});
|
|
53674
|
+
return $tea.cast<QueryMinutesTextResponse>(await this.callApi(params, req, runtime), new QueryMinutesTextResponse({}));
|
|
53675
|
+
}
|
|
53676
|
+
|
|
53677
|
+
/**
|
|
53678
|
+
* @summary 查询会议闪记的文本信息
|
|
53679
|
+
*
|
|
53680
|
+
* @param request QueryMinutesTextRequest
|
|
53681
|
+
* @return QueryMinutesTextResponse
|
|
53682
|
+
*/
|
|
53683
|
+
async queryMinutesText(request: QueryMinutesTextRequest): Promise<QueryMinutesTextResponse> {
|
|
53684
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
53685
|
+
let headers = new QueryMinutesTextHeaders({ });
|
|
53686
|
+
return await this.queryMinutesTextWithOptions(request, headers, runtime);
|
|
53687
|
+
}
|
|
53688
|
+
|
|
52607
53689
|
/**
|
|
52608
53690
|
* @summary 查询企业荣誉
|
|
52609
53691
|
*
|