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

820 B

CatAllOf

Properties

Name Type Description Notes
declawed bool [optional]

Example

from petstore_api.models.cat_all_of import CatAllOf

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

# convert the object into a dict
cat_all_of_dict = cat_all_of_instance.to_dict()
# create an instance of CatAllOf from a dict
cat_all_of_form_dict = cat_all_of.from_dict(cat_all_of_dict)

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