forked from loafle/openapi-generator-original
* fix model_generic python templates to have valid imports for polymorphism * update samples * update samples --------- Co-authored-by: yugi <yugi-big@proton.me>
842 B
842 B
HuntingDog
Properties
Name | Type | Description | Notes |
---|---|---|---|
is_trained | bool | [optional] |
Example
from petstore_api.models.hunting_dog import HuntingDog
# TODO update the JSON string below
json = "{}"
# create an instance of HuntingDog from a JSON string
hunting_dog_instance = HuntingDog.from_json(json)
# print the JSON string representation of the object
print(HuntingDog.to_json())
# convert the object into a dict
hunting_dog_dict = hunting_dog_instance.to_dict()
# create an instance of HuntingDog from a dict
hunting_dog_from_dict = HuntingDog.from_dict(hunting_dog_dict)