forked from loafle/openapi-generator-original
* add custom gson deserializer * add check for additional fields, required fields * add tests for custom deserializer * add custom adapter * add custom adapter * register type adapter factory * comment out custom deserializer and use adapter instead * add okhttp-gson-nextgen * add new files * restore okhttp-gson * switch to adapter * remove custom de/serializer * add comment * update tests * test nextgen in ci * update doc * use full model name in JSON.java * undo changes * add oneof discriminator support * fix anyOf * remove mappings * add more tests * fix oneof deserialization, add more tests * add error body and type to api exception class * JSON to use instance variables/methods * Revert "add error body and type to api exception class" This reverts commit 07f34e2c450ad9f808b728173018b1e4d8fed458.
1.4 KiB
1.4 KiB
User
Properties
Name | Type | Description | Notes |
---|---|---|---|
id | Long | [optional] | |
username | String | [optional] | |
firstName | String | [optional] | |
lastName | String | [optional] | |
String | [optional] | ||
password | String | [optional] | |
phone | String | [optional] | |
userStatus | Integer | User Status | [optional] |
objectWithNoDeclaredProps | Object | test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value. | [optional] |
objectWithNoDeclaredPropsNullable | Object | test code generation for nullable objects. Value must be a map of strings to values or the 'null' value. | [optional] |
anyTypeProp | Object | test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. See https://github.com/OAI/OpenAPI-Specification/issues/1389 | [optional] |
anyTypePropNullable | Object | test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. The 'nullable' attribute does not change the allowed values. | [optional] |