Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1004 Bytes

File metadata and controls

29 lines (20 loc) · 1004 Bytes

SaveCategoryResponse

Properties

Name Type Description Notes
data SaveCategoryResponseData

Example

from ynab.models.save_category_response import SaveCategoryResponse

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

# convert the object into a dict
save_category_response_dict = save_category_response_instance.to_dict()
# create an instance of SaveCategoryResponse from a dict
save_category_response_from_dict = SaveCategoryResponse.from_dict(save_category_response_dict)

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