| Name | Type | Description | Notes |
|---|---|---|---|
| category | SaveMonthCategory |
from ynab.models.patch_month_category_wrapper import PatchMonthCategoryWrapper
# TODO update the JSON string below
json = "{}"
# create an instance of PatchMonthCategoryWrapper from a JSON string
patch_month_category_wrapper_instance = PatchMonthCategoryWrapper.from_json(json)
# print the JSON string representation of the object
print(PatchMonthCategoryWrapper.to_json())
# convert the object into a dict
patch_month_category_wrapper_dict = patch_month_category_wrapper_instance.to_dict()
# create an instance of PatchMonthCategoryWrapper from a dict
patch_month_category_wrapper_from_dict = PatchMonthCategoryWrapper.from_dict(patch_month_category_wrapper_dict)