2023-05-16 13:54:07 +08:00

816 B

DogAllOf

Properties

Name Type Description Notes
breed str [optional]

Example

from petstore_api.models.dog_all_of import DogAllOf

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

# convert the object into a dict
dog_all_of_dict = dog_all_of_instance.to_dict()
# create an instance of DogAllOf from a dict
dog_all_of_form_dict = dog_all_of.from_dict(dog_all_of_dict)

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