forked from loafle/openapi-generator-original
* Make the array items optional * Handle any type schema * Handle any type schema * remove prefix and fullSuffix * Remove prefix and suffix * fix Java code comment * Add code comments, use recursion for any type * Address review comments
1.5 KiB
1.5 KiB
user.User
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| username | str | [optional] | |
| first_name | str | [optional] | |
| last_name | str | [optional] | |
| str | [optional] | ||
| password | str | [optional] | |
| phone | str | [optional] | |
| user_status | int | User Status | [optional] |
| arbitrary_object | bool, date, datetime, dict, float, int, list, str | test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value. | [optional] |
| arbitrary_nullable_object | bool, date, datetime, dict, float, int, list, str, none_type | test code generation for nullable objects. Value must be a map of strings to values or the 'null' value. | [optional] |
| arbitrary_type_value | bool, date, datetime, dict, float, int, list, str, none_type | test code generation for any type Value can be any type - string, number, boolean, array or object. | [optional] |
| arbitrary_nullable_type_value | bool, date, datetime, dict, float, int, list, str, none_type | test code generation for any type Value can be any type - string, number, boolean, array, object or the 'null' value. | [optional] |