Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 968 Bytes

CategoriesResponse.md

File metadata and controls

29 lines (20 loc) · 968 Bytes

CategoriesResponse

Properties

Name Type Description Notes
data CategoriesResponseData

Example

from ynab.models.categories_response import CategoriesResponse

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

# convert the object into a dict
categories_response_dict = categories_response_instance.to_dict()
# create an instance of CategoriesResponse from a dict
categories_response_from_dict = CategoriesResponse.from_dict(categories_response_dict)

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