Sebastien Rosset 63859d6d51 Add python-experimental-openapiv3-sample (#4992)
Add python-experimental-openapiv3-sample

Add missing files for the Python samples

Add python-experimental-petstore.bat for openapi v3

Add python-experimental samples openapi v3

Add python-experimental samples openapi v3

Add python-experimental samples openapi v3. Address review comments

add missing files for test purpose

fix python formatting issues

fix python formatting issues

fix python formatting issues

Fix unit tests

fix python formatting issues

fix python formatting issues

fix python formatting issues

fix 'line too long' pep8 error

address PR comments for pep8 'line too long' problem

regenerate samples

execute samples scripts

dummy commit to retrigger circleci

Revert dummy commit, it didn't help.
2020-01-21 23:19:07 +08:00

1.5 KiB

nullable_class.NullableClass

Properties

Name Type Description Notes
integer_prop int, none_type [optional]
number_prop float, none_type [optional]
boolean_prop bool, none_type [optional]
string_prop str, none_type [optional]
date_prop date, none_type [optional]
datetime_prop datetime, none_type [optional]
array_nullable_prop [bool, date, datetime, dict, float, int, list, str], none_type [optional]
array_and_items_nullable_prop [bool, date, datetime, dict, float, int, list, str, none_type], none_type [optional]
array_items_nullable [bool, date, datetime, dict, float, int, list, str, none_type] [optional]
object_nullable_prop {str: (bool, date, datetime, dict, float, int, list, str,)}, none_type [optional]
object_and_items_nullable_prop {str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type [optional]
object_items_nullable {str: (bool, date, datetime, dict, float, int, list, str, none_type)} [optional]
any string name bool, date, datetime, dict, float, int, list, str, none_type any string name can be used but the value must be the correct type [optional]

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