File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @alicloud/chatbot20220408" ,
3- "version" : " 2.4.0 " ,
3+ "version" : " 2.4.1 " ,
44 "description" : " " ,
55 "main" : " dist/client.js" ,
66 "scripts" : {
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments