Skip to content

Commit 666ce90

Browse files
committed
Update API DescribeFaq: add response parameters Body.Solutions.$.TagIdList.
1 parent 3252f68 commit 666ce90

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

chatbot-20220408/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alicloud/chatbot20220408",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"description": "",
55
"main": "dist/client.js",
66
"scripts": {

chatbot-20220408/src/models/DescribeFaqResponseBody.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ export class DescribeFaqResponseBodySolutions extends $dara.Model {
121121
* 10000003071
122122
*/
123123
solutionId?: number;
124+
tagIdList?: number[];
124125
static names(): { [key: string]: string } {
125126
return {
126127
content: 'Content',
@@ -130,6 +131,7 @@ export class DescribeFaqResponseBodySolutions extends $dara.Model {
130131
perspectiveCodes: 'PerspectiveCodes',
131132
plainText: 'PlainText',
132133
solutionId: 'SolutionId',
134+
tagIdList: 'TagIdList',
133135
};
134136
}
135137

@@ -142,13 +144,17 @@ export class DescribeFaqResponseBodySolutions extends $dara.Model {
142144
perspectiveCodes: { 'type': 'array', 'itemType': 'string' },
143145
plainText: 'string',
144146
solutionId: 'number',
147+
tagIdList: { 'type': 'array', 'itemType': 'number' },
145148
};
146149
}
147150

148151
validate() {
149152
if(Array.isArray(this.perspectiveCodes)) {
150153
$dara.Model.validateArray(this.perspectiveCodes);
151154
}
155+
if(Array.isArray(this.tagIdList)) {
156+
$dara.Model.validateArray(this.tagIdList);
157+
}
152158
super.validate();
153159
}
154160

0 commit comments

Comments
 (0)