Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 842 Bytes

File metadata and controls

29 lines (20 loc) · 842 Bytes

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)

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