update JS test cases

This commit is contained in:
wing328
2016-08-12 10:30:33 +08:00
parent 02f43bc195
commit 0a5cd19e97
70 changed files with 274 additions and 210 deletions

View File

@@ -76,7 +76,7 @@
obj['array_of_string'] = ApiClient.convertToType(data['array_of_string'], ['String']);
}
if (data.hasOwnProperty('array_array_of_integer')) {
obj['array_array_of_integer'] = ApiClient.convertToType(data['array_array_of_integer'], [['Integer']]);
obj['array_array_of_integer'] = ApiClient.convertToType(data['array_array_of_integer'], [['Number']]);
}
if (data.hasOwnProperty('array_array_of_model')) {
obj['array_array_of_model'] = ApiClient.convertToType(data['array_array_of_model'], [[ReadOnlyFirst]]);
@@ -90,7 +90,7 @@
*/
exports.prototype['array_of_string'] = undefined;
/**
* @member {Array.<Array.<Integer>>} array_array_of_integer
* @member {Array.<Array.<Number>>} array_array_of_integer
*/
exports.prototype['array_array_of_integer'] = undefined;
/**