File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1313
1414
1515import ApiClient from './ApiClient' ;
16+ import AnyType from './model/AnyType' ;
1617import AbstractProblem from './model/AbstractProblem' ;
1718import Action from './model/Action' ;
1819import ActionResult from './model/ActionResult' ;
@@ -120,6 +121,8 @@ export {
120121 */
121122 ApiClient ,
122123
124+ AnyType ,
125+
123126 /**
124127 * The AbstractProblem model constructor.
125128 * @property {module:model/AbstractProblem }
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ class ActionResult {
5151
5252 if ( data . hasOwnProperty ( 'type' ) ) {
5353 obj [ 'type' ] = ApiClient . convertToType ( data [ 'type' ] , 'String' ) ;
54+ obj = ApiClient . convertToType ( data , obj [ 'type' ] )
5455 }
5556 }
5657 return obj ;
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class QueryAction {
4040 * Only for internal use.
4141 */
4242 static initialize ( obj , type ) {
43- obj [ 'source' ] = source ;
43+ obj [ 'source' ] = null ;
4444 }
4545
4646 /**
You can’t perform that action at this time.
0 commit comments