mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-08 13:36:11 +00:00
Merge remote-tracking branch 'origin/master' into 4.2.x
This commit is contained in:
@@ -17,5 +17,6 @@ Name | Type | Description | Notes
|
||||
**dateTime** | **Date** | | [optional]
|
||||
**uuid** | **String** | | [optional]
|
||||
**password** | **String** | |
|
||||
**bigDecimal** | **Number** | | [optional]
|
||||
|
||||
|
||||
|
||||
@@ -105,6 +105,9 @@
|
||||
if (data.hasOwnProperty('password')) {
|
||||
obj['password'] = ApiClient.convertToType(data['password'], 'String');
|
||||
}
|
||||
if (data.hasOwnProperty('BigDecimal')) {
|
||||
obj['BigDecimal'] = ApiClient.convertToType(data['BigDecimal'], 'Number');
|
||||
}
|
||||
}
|
||||
return obj;
|
||||
}
|
||||
@@ -161,6 +164,10 @@
|
||||
* @member {String} password
|
||||
*/
|
||||
exports.prototype['password'] = undefined;
|
||||
/**
|
||||
* @member {Number} BigDecimal
|
||||
*/
|
||||
exports.prototype['BigDecimal'] = undefined;
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user