Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

File metadata and controls

29 lines (20 loc) · 1 KB

MonthDetailResponseData

Properties

Name Type Description Notes
month MonthDetail

Example

from ynab.models.month_detail_response_data import MonthDetailResponseData

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

# convert the object into a dict
month_detail_response_data_dict = month_detail_response_data_instance.to_dict()
# create an instance of MonthDetailResponseData from a dict
month_detail_response_data_from_dict = MonthDetailResponseData.from_dict(month_detail_response_data_dict)

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