@alicloud/aliding20230426 2.46.0 → 2.47.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 +16 -0
- package/dist/client.js +68 -0
- package/dist/client.js.map +1 -1
- package/dist/models/MeetingFlashMinutesTextHeaders.d.ts +37 -0
- package/dist/models/MeetingFlashMinutesTextHeaders.js +85 -0
- package/dist/models/MeetingFlashMinutesTextHeaders.js.map +1 -0
- package/dist/models/MeetingFlashMinutesTextRequest.d.ts +49 -0
- package/dist/models/MeetingFlashMinutesTextRequest.js +86 -0
- package/dist/models/MeetingFlashMinutesTextRequest.js.map +1 -0
- package/dist/models/MeetingFlashMinutesTextResponse.d.ts +19 -0
- package/dist/models/MeetingFlashMinutesTextResponse.js +69 -0
- package/dist/models/MeetingFlashMinutesTextResponse.js.map +1 -0
- package/dist/models/MeetingFlashMinutesTextResponseBody.d.ts +151 -0
- package/dist/models/MeetingFlashMinutesTextResponseBody.js +180 -0
- package/dist/models/MeetingFlashMinutesTextResponseBody.js.map +1 -0
- package/dist/models/MeetingFlashMinutesTextShrinkHeaders.d.ts +17 -0
- package/dist/models/MeetingFlashMinutesTextShrinkHeaders.js +63 -0
- package/dist/models/MeetingFlashMinutesTextShrinkHeaders.js.map +1 -0
- package/dist/models/MeetingFlashMinutesTextShrinkRequest.d.ts +32 -0
- package/dist/models/MeetingFlashMinutesTextShrinkRequest.js +64 -0
- package/dist/models/MeetingFlashMinutesTextShrinkRequest.js.map +1 -0
- package/dist/models/model.d.ts +12 -0
- package/dist/models/model.js +63 -39
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +78 -0
- package/src/models/MeetingFlashMinutesTextHeaders.ts +66 -0
- package/src/models/MeetingFlashMinutesTextRequest.ts +81 -0
- package/src/models/MeetingFlashMinutesTextResponse.ts +40 -0
- package/src/models/MeetingFlashMinutesTextResponseBody.ts +250 -0
- package/src/models/MeetingFlashMinutesTextShrinkHeaders.ts +33 -0
- package/src/models/MeetingFlashMinutesTextShrinkRequest.ts +51 -0
- package/src/models/model.ts +12 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class MeetingFlashMinutesTextHeadersAccountContext extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* This parameter is required.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* 012345
|
|
12
|
+
*/
|
|
13
|
+
accountId?: string;
|
|
14
|
+
static names(): { [key: string]: string } {
|
|
15
|
+
return {
|
|
16
|
+
accountId: 'accountId',
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
static types(): { [key: string]: any } {
|
|
21
|
+
return {
|
|
22
|
+
accountId: 'string',
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
super.validate();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
constructor(map?: { [key: string]: any }) {
|
|
31
|
+
super(map);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export class MeetingFlashMinutesTextHeaders extends $dara.Model {
|
|
36
|
+
commonHeaders?: { [key: string]: string };
|
|
37
|
+
accountContext?: MeetingFlashMinutesTextHeadersAccountContext;
|
|
38
|
+
static names(): { [key: string]: string } {
|
|
39
|
+
return {
|
|
40
|
+
commonHeaders: 'commonHeaders',
|
|
41
|
+
accountContext: 'AccountContext',
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
static types(): { [key: string]: any } {
|
|
46
|
+
return {
|
|
47
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
48
|
+
accountContext: MeetingFlashMinutesTextHeadersAccountContext,
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
validate() {
|
|
53
|
+
if(this.commonHeaders) {
|
|
54
|
+
$dara.Model.validateMap(this.commonHeaders);
|
|
55
|
+
}
|
|
56
|
+
if(this.accountContext && typeof (this.accountContext as any).validate === 'function') {
|
|
57
|
+
(this.accountContext as any).validate();
|
|
58
|
+
}
|
|
59
|
+
super.validate();
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
constructor(map?: { [key: string]: any }) {
|
|
63
|
+
super(map);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class MeetingFlashMinutesTextRequestTenantContext extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* xxxxxx
|
|
9
|
+
*/
|
|
10
|
+
tenantId?: string;
|
|
11
|
+
static names(): { [key: string]: string } {
|
|
12
|
+
return {
|
|
13
|
+
tenantId: 'tenantId',
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
static types(): { [key: string]: any } {
|
|
18
|
+
return {
|
|
19
|
+
tenantId: 'string',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
validate() {
|
|
24
|
+
super.validate();
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
constructor(map?: { [key: string]: any }) {
|
|
28
|
+
super(map);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export class MeetingFlashMinutesTextRequest extends $dara.Model {
|
|
33
|
+
tenantContext?: MeetingFlashMinutesTextRequestTenantContext;
|
|
34
|
+
/**
|
|
35
|
+
* @remarks
|
|
36
|
+
* This parameter is required.
|
|
37
|
+
*
|
|
38
|
+
* @example
|
|
39
|
+
* 61289fxxx
|
|
40
|
+
*/
|
|
41
|
+
conferenceId?: string;
|
|
42
|
+
/**
|
|
43
|
+
* @example
|
|
44
|
+
* 20
|
|
45
|
+
*/
|
|
46
|
+
maxResults?: number;
|
|
47
|
+
/**
|
|
48
|
+
* @example
|
|
49
|
+
* 0
|
|
50
|
+
*/
|
|
51
|
+
nextToken?: string;
|
|
52
|
+
static names(): { [key: string]: string } {
|
|
53
|
+
return {
|
|
54
|
+
tenantContext: 'TenantContext',
|
|
55
|
+
conferenceId: 'conferenceId',
|
|
56
|
+
maxResults: 'maxResults',
|
|
57
|
+
nextToken: 'nextToken',
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
static types(): { [key: string]: any } {
|
|
62
|
+
return {
|
|
63
|
+
tenantContext: MeetingFlashMinutesTextRequestTenantContext,
|
|
64
|
+
conferenceId: 'string',
|
|
65
|
+
maxResults: 'number',
|
|
66
|
+
nextToken: 'string',
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
validate() {
|
|
71
|
+
if(this.tenantContext && typeof (this.tenantContext as any).validate === 'function') {
|
|
72
|
+
(this.tenantContext as any).validate();
|
|
73
|
+
}
|
|
74
|
+
super.validate();
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
constructor(map?: { [key: string]: any }) {
|
|
78
|
+
super(map);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { MeetingFlashMinutesTextResponseBody } from "./MeetingFlashMinutesTextResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class MeetingFlashMinutesTextResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: MeetingFlashMinutesTextResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: MeetingFlashMinutesTextResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class MeetingFlashMinutesTextResponseBodyParagraphListSentenceListWordList extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 7920000
|
|
9
|
+
*/
|
|
10
|
+
endTime?: number;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 7910000
|
|
14
|
+
*/
|
|
15
|
+
startTime?: number;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 单词
|
|
19
|
+
*/
|
|
20
|
+
word?: string;
|
|
21
|
+
static names(): { [key: string]: string } {
|
|
22
|
+
return {
|
|
23
|
+
endTime: 'endTime',
|
|
24
|
+
startTime: 'startTime',
|
|
25
|
+
word: 'word',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
static types(): { [key: string]: any } {
|
|
30
|
+
return {
|
|
31
|
+
endTime: 'number',
|
|
32
|
+
startTime: 'number',
|
|
33
|
+
word: 'string',
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
validate() {
|
|
38
|
+
super.validate();
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
constructor(map?: { [key: string]: any }) {
|
|
42
|
+
super(map);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export class MeetingFlashMinutesTextResponseBodyParagraphListSentenceList extends $dara.Model {
|
|
47
|
+
/**
|
|
48
|
+
* @example
|
|
49
|
+
* 7920000
|
|
50
|
+
*/
|
|
51
|
+
endTime?: number;
|
|
52
|
+
/**
|
|
53
|
+
* @example
|
|
54
|
+
* 这里是小钉
|
|
55
|
+
*/
|
|
56
|
+
sentence?: string;
|
|
57
|
+
/**
|
|
58
|
+
* @example
|
|
59
|
+
* 7910000
|
|
60
|
+
*/
|
|
61
|
+
startTime?: number;
|
|
62
|
+
wordList?: MeetingFlashMinutesTextResponseBodyParagraphListSentenceListWordList[];
|
|
63
|
+
static names(): { [key: string]: string } {
|
|
64
|
+
return {
|
|
65
|
+
endTime: 'endTime',
|
|
66
|
+
sentence: 'sentence',
|
|
67
|
+
startTime: 'startTime',
|
|
68
|
+
wordList: 'wordList',
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
static types(): { [key: string]: any } {
|
|
73
|
+
return {
|
|
74
|
+
endTime: 'number',
|
|
75
|
+
sentence: 'string',
|
|
76
|
+
startTime: 'number',
|
|
77
|
+
wordList: { 'type': 'array', 'itemType': MeetingFlashMinutesTextResponseBodyParagraphListSentenceListWordList },
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
validate() {
|
|
82
|
+
if(Array.isArray(this.wordList)) {
|
|
83
|
+
$dara.Model.validateArray(this.wordList);
|
|
84
|
+
}
|
|
85
|
+
super.validate();
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
constructor(map?: { [key: string]: any }) {
|
|
89
|
+
super(map);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export class MeetingFlashMinutesTextResponseBodyParagraphListSpeakerDisplay extends $dara.Model {
|
|
94
|
+
/**
|
|
95
|
+
* @example
|
|
96
|
+
* https://xxx
|
|
97
|
+
*/
|
|
98
|
+
avatarUrl?: string;
|
|
99
|
+
/**
|
|
100
|
+
* @example
|
|
101
|
+
* 小钉
|
|
102
|
+
*/
|
|
103
|
+
nickName?: string;
|
|
104
|
+
static names(): { [key: string]: string } {
|
|
105
|
+
return {
|
|
106
|
+
avatarUrl: 'avatarUrl',
|
|
107
|
+
nickName: 'nickName',
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
static types(): { [key: string]: any } {
|
|
112
|
+
return {
|
|
113
|
+
avatarUrl: 'string',
|
|
114
|
+
nickName: 'string',
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
validate() {
|
|
119
|
+
super.validate();
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
constructor(map?: { [key: string]: any }) {
|
|
123
|
+
super(map);
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export class MeetingFlashMinutesTextResponseBodyParagraphList extends $dara.Model {
|
|
128
|
+
/**
|
|
129
|
+
* @example
|
|
130
|
+
* 7920000
|
|
131
|
+
*/
|
|
132
|
+
endTime?: number;
|
|
133
|
+
/**
|
|
134
|
+
* @example
|
|
135
|
+
* 小钉
|
|
136
|
+
*/
|
|
137
|
+
nickName?: string;
|
|
138
|
+
/**
|
|
139
|
+
* @example
|
|
140
|
+
* 这里是小钉
|
|
141
|
+
*/
|
|
142
|
+
paragraph?: string;
|
|
143
|
+
sentenceList?: MeetingFlashMinutesTextResponseBodyParagraphListSentenceList[];
|
|
144
|
+
speakerDisplay?: MeetingFlashMinutesTextResponseBodyParagraphListSpeakerDisplay;
|
|
145
|
+
/**
|
|
146
|
+
* @example
|
|
147
|
+
* 7910000
|
|
148
|
+
*/
|
|
149
|
+
startTime?: number;
|
|
150
|
+
/**
|
|
151
|
+
* @example
|
|
152
|
+
* 012345
|
|
153
|
+
*/
|
|
154
|
+
userId?: string;
|
|
155
|
+
static names(): { [key: string]: string } {
|
|
156
|
+
return {
|
|
157
|
+
endTime: 'endTime',
|
|
158
|
+
nickName: 'nickName',
|
|
159
|
+
paragraph: 'paragraph',
|
|
160
|
+
sentenceList: 'sentenceList',
|
|
161
|
+
speakerDisplay: 'speakerDisplay',
|
|
162
|
+
startTime: 'startTime',
|
|
163
|
+
userId: 'userId',
|
|
164
|
+
};
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
static types(): { [key: string]: any } {
|
|
168
|
+
return {
|
|
169
|
+
endTime: 'number',
|
|
170
|
+
nickName: 'string',
|
|
171
|
+
paragraph: 'string',
|
|
172
|
+
sentenceList: { 'type': 'array', 'itemType': MeetingFlashMinutesTextResponseBodyParagraphListSentenceList },
|
|
173
|
+
speakerDisplay: MeetingFlashMinutesTextResponseBodyParagraphListSpeakerDisplay,
|
|
174
|
+
startTime: 'number',
|
|
175
|
+
userId: 'string',
|
|
176
|
+
};
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
validate() {
|
|
180
|
+
if(Array.isArray(this.sentenceList)) {
|
|
181
|
+
$dara.Model.validateArray(this.sentenceList);
|
|
182
|
+
}
|
|
183
|
+
if(this.speakerDisplay && typeof (this.speakerDisplay as any).validate === 'function') {
|
|
184
|
+
(this.speakerDisplay as any).validate();
|
|
185
|
+
}
|
|
186
|
+
super.validate();
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
constructor(map?: { [key: string]: any }) {
|
|
190
|
+
super(map);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export class MeetingFlashMinutesTextResponseBody extends $dara.Model {
|
|
195
|
+
hasNext?: boolean;
|
|
196
|
+
/**
|
|
197
|
+
* @example
|
|
198
|
+
* 1778490366045000_62XXX
|
|
199
|
+
*/
|
|
200
|
+
nextToken?: string;
|
|
201
|
+
paragraphList?: MeetingFlashMinutesTextResponseBodyParagraphList[];
|
|
202
|
+
/**
|
|
203
|
+
* @example
|
|
204
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
205
|
+
*/
|
|
206
|
+
requestId?: string;
|
|
207
|
+
/**
|
|
208
|
+
* @example
|
|
209
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
210
|
+
*/
|
|
211
|
+
vendorRequestId?: string;
|
|
212
|
+
/**
|
|
213
|
+
* @example
|
|
214
|
+
* dingtalk
|
|
215
|
+
*/
|
|
216
|
+
vendorType?: string;
|
|
217
|
+
static names(): { [key: string]: string } {
|
|
218
|
+
return {
|
|
219
|
+
hasNext: 'hasNext',
|
|
220
|
+
nextToken: 'nextToken',
|
|
221
|
+
paragraphList: 'paragraphList',
|
|
222
|
+
requestId: 'requestId',
|
|
223
|
+
vendorRequestId: 'vendorRequestId',
|
|
224
|
+
vendorType: 'vendorType',
|
|
225
|
+
};
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
static types(): { [key: string]: any } {
|
|
229
|
+
return {
|
|
230
|
+
hasNext: 'boolean',
|
|
231
|
+
nextToken: 'string',
|
|
232
|
+
paragraphList: { 'type': 'array', 'itemType': MeetingFlashMinutesTextResponseBodyParagraphList },
|
|
233
|
+
requestId: 'string',
|
|
234
|
+
vendorRequestId: 'string',
|
|
235
|
+
vendorType: 'string',
|
|
236
|
+
};
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
validate() {
|
|
240
|
+
if(Array.isArray(this.paragraphList)) {
|
|
241
|
+
$dara.Model.validateArray(this.paragraphList);
|
|
242
|
+
}
|
|
243
|
+
super.validate();
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
constructor(map?: { [key: string]: any }) {
|
|
247
|
+
super(map);
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class MeetingFlashMinutesTextShrinkHeaders extends $dara.Model {
|
|
6
|
+
commonHeaders?: { [key: string]: string };
|
|
7
|
+
accountContextShrink?: string;
|
|
8
|
+
static names(): { [key: string]: string } {
|
|
9
|
+
return {
|
|
10
|
+
commonHeaders: 'commonHeaders',
|
|
11
|
+
accountContextShrink: 'AccountContext',
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
static types(): { [key: string]: any } {
|
|
16
|
+
return {
|
|
17
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
18
|
+
accountContextShrink: 'string',
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
validate() {
|
|
23
|
+
if(this.commonHeaders) {
|
|
24
|
+
$dara.Model.validateMap(this.commonHeaders);
|
|
25
|
+
}
|
|
26
|
+
super.validate();
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
constructor(map?: { [key: string]: any }) {
|
|
30
|
+
super(map);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class MeetingFlashMinutesTextShrinkRequest extends $dara.Model {
|
|
6
|
+
tenantContextShrink?: string;
|
|
7
|
+
/**
|
|
8
|
+
* @remarks
|
|
9
|
+
* This parameter is required.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* 61289fxxx
|
|
13
|
+
*/
|
|
14
|
+
conferenceId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @example
|
|
17
|
+
* 20
|
|
18
|
+
*/
|
|
19
|
+
maxResults?: number;
|
|
20
|
+
/**
|
|
21
|
+
* @example
|
|
22
|
+
* 0
|
|
23
|
+
*/
|
|
24
|
+
nextToken?: string;
|
|
25
|
+
static names(): { [key: string]: string } {
|
|
26
|
+
return {
|
|
27
|
+
tenantContextShrink: 'TenantContext',
|
|
28
|
+
conferenceId: 'conferenceId',
|
|
29
|
+
maxResults: 'maxResults',
|
|
30
|
+
nextToken: 'nextToken',
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
static types(): { [key: string]: any } {
|
|
35
|
+
return {
|
|
36
|
+
tenantContextShrink: 'string',
|
|
37
|
+
conferenceId: 'string',
|
|
38
|
+
maxResults: 'number',
|
|
39
|
+
nextToken: 'string',
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
validate() {
|
|
44
|
+
super.validate();
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
constructor(map?: { [key: string]: any }) {
|
|
48
|
+
super(map);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -800,6 +800,12 @@ export { MeetingFlashMinutesResponseBodyBasicInfo } from './MeetingFlashMinutesR
|
|
|
800
800
|
export { MeetingFlashMinutesResponseBodyTodosDingtalkTodoListExecutorList } from './MeetingFlashMinutesResponseBody';
|
|
801
801
|
export { MeetingFlashMinutesResponseBodyTodosDingtalkTodoList } from './MeetingFlashMinutesResponseBody';
|
|
802
802
|
export { MeetingFlashMinutesResponseBodyTodos } from './MeetingFlashMinutesResponseBody';
|
|
803
|
+
export { MeetingFlashMinutesTextHeadersAccountContext } from './MeetingFlashMinutesTextHeaders';
|
|
804
|
+
export { MeetingFlashMinutesTextRequestTenantContext } from './MeetingFlashMinutesTextRequest';
|
|
805
|
+
export { MeetingFlashMinutesTextResponseBodyParagraphListSentenceListWordList } from './MeetingFlashMinutesTextResponseBody';
|
|
806
|
+
export { MeetingFlashMinutesTextResponseBodyParagraphListSentenceList } from './MeetingFlashMinutesTextResponseBody';
|
|
807
|
+
export { MeetingFlashMinutesTextResponseBodyParagraphListSpeakerDisplay } from './MeetingFlashMinutesTextResponseBody';
|
|
808
|
+
export { MeetingFlashMinutesTextResponseBodyParagraphList } from './MeetingFlashMinutesTextResponseBody';
|
|
803
809
|
export { MuteAllHeadersAccountContext } from './MuteAllHeaders';
|
|
804
810
|
export { MuteAllRequestTenantContext } from './MuteAllRequest';
|
|
805
811
|
export { MuteMembersHeadersAccountContext } from './MuteMembersHeaders';
|
|
@@ -2189,6 +2195,12 @@ export { MeetingFlashMinutesRequest } from './MeetingFlashMinutesRequest';
|
|
|
2189
2195
|
export { MeetingFlashMinutesShrinkRequest } from './MeetingFlashMinutesShrinkRequest';
|
|
2190
2196
|
export { MeetingFlashMinutesResponseBody } from './MeetingFlashMinutesResponseBody';
|
|
2191
2197
|
export { MeetingFlashMinutesResponse } from './MeetingFlashMinutesResponse';
|
|
2198
|
+
export { MeetingFlashMinutesTextHeaders } from './MeetingFlashMinutesTextHeaders';
|
|
2199
|
+
export { MeetingFlashMinutesTextShrinkHeaders } from './MeetingFlashMinutesTextShrinkHeaders';
|
|
2200
|
+
export { MeetingFlashMinutesTextRequest } from './MeetingFlashMinutesTextRequest';
|
|
2201
|
+
export { MeetingFlashMinutesTextShrinkRequest } from './MeetingFlashMinutesTextShrinkRequest';
|
|
2202
|
+
export { MeetingFlashMinutesTextResponseBody } from './MeetingFlashMinutesTextResponseBody';
|
|
2203
|
+
export { MeetingFlashMinutesTextResponse } from './MeetingFlashMinutesTextResponse';
|
|
2192
2204
|
export { MuteAllHeaders } from './MuteAllHeaders';
|
|
2193
2205
|
export { MuteAllShrinkHeaders } from './MuteAllShrinkHeaders';
|
|
2194
2206
|
export { MuteAllRequest } from './MuteAllRequest';
|