Justin Black ee0686e13f
Python-exp clean up model classnames (#7054)
* Adds lazy_import, removes python-exp java class renaming code, partial removal of getPythonClassName call sites

Fixes PythonClientExperimentalTest.java

Python-exp smaples regeneration

Revers makefile

Reverst pom.xml

Fixes model imports in models.__init__

Updates docstring, omits lazy import in additional properties if we dont need it

Improves additional_properties_type assignment if None

Removes getPythonClassName

Fixes python-exp tests

* Removes unused makefiles
2020-07-27 18:35:41 -07:00

1.8 KiB

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]
object_with_no_declared_props {str: (bool, date, datetime, dict, float, int, list, str, none_type)} test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value. [optional]
object_with_no_declared_props_nullable {str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type test code generation for nullable objects. Value must be a map of strings to values or the 'null' value. [optional]
any_type_prop bool, date, datetime, dict, float, int, list, str, none_type 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]
any_type_prop_nullable bool, date, datetime, dict, float, int, list, str, none_type 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]

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