Sebastien Rosset a093a9d5d5
[python-experimental] Make the array items attribute optional (#6133)
* 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
2020-05-09 18:49:10 -07:00

1.5 KiB

user.User

Properties

Name Type Description Notes
id int [optional]
username str [optional]
first_name str [optional]
last_name str [optional]
email 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]

[Back to Model list] [Back to API list] [Back to README]