Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 938 Bytes

CategoryResponse.md

File metadata and controls

29 lines (20 loc) · 938 Bytes

CategoryResponse

Properties

Name Type Description Notes
data CategoryResponseData

Example

from ynab.models.category_response import CategoryResponse

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

# convert the object into a dict
category_response_dict = category_response_instance.to_dict()
# create an instance of CategoryResponse from a dict
category_response_from_dict = CategoryResponse.from_dict(category_response_dict)

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