Files
openapi-generator/samples/openapi3/client/petstore/python-httpx/docs/EnumRefWithDefaultValue.md
Alex Kondratev bab5ca2452 [python] add async httpx support (#22021)
* [python] fix #19255 add async httpx support

* update docs

* 1. "async" parameter for templates
2. hand written tests for python-httpx
3. CI workflow updated

* fix mypy
2025-09-27 15:30:50 +08:00

1.1 KiB

EnumRefWithDefaultValue

Properties

Name Type Description Notes
report_format DataOutputFormat [optional] [default to DataOutputFormat.JSON]

Example

from petstore_api.models.enum_ref_with_default_value import EnumRefWithDefaultValue

# TODO update the JSON string below
json = "{}"
# create an instance of EnumRefWithDefaultValue from a JSON string
enum_ref_with_default_value_instance = EnumRefWithDefaultValue.from_json(json)
# print the JSON string representation of the object
print(EnumRefWithDefaultValue.to_json())

# convert the object into a dict
enum_ref_with_default_value_dict = enum_ref_with_default_value_instance.to_dict()
# create an instance of EnumRefWithDefaultValue from a dict
enum_ref_with_default_value_from_dict = EnumRefWithDefaultValue.from_dict(enum_ref_with_default_value_dict)

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