Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 2.39 KB

File metadata and controls

44 lines (35 loc) · 2.39 KB

MonthSummary

Properties

Name Type Description Notes
month date
note str [optional]
income int The total amount of transactions categorized to 'Inflow: Ready to Assign' in the month
budgeted int The total amount assigned (budgeted) in the month
activity int The total amount of transactions in the month, excluding those categorized to 'Inflow: Ready to Assign'
to_be_budgeted int The available amount for 'Ready to Assign'
age_of_money int The Age of Money as of the month [optional]
deleted bool Whether or not the month has been deleted. Deleted months will only be included in delta requests.
income_formatted str The total income formatted in the plan's currency format [optional]
income_currency float The total income as a decimal currency amount [optional]
budgeted_formatted str The total amount assigned formatted in the plan's currency format [optional]
budgeted_currency float The total amount assigned as a decimal currency amount [optional]
activity_formatted str The total activity amount formatted in the plan's currency format [optional]
activity_currency float The total activity amount as a decimal currency amount [optional]
to_be_budgeted_formatted str The available amount for 'Ready to Assign' formatted in the plan's currency format [optional]
to_be_budgeted_currency float The available amount for 'Ready to Assign' as a decimal currency amount [optional]

Example

from ynab.models.month_summary import MonthSummary

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

# convert the object into a dict
month_summary_dict = month_summary_instance.to_dict()
# create an instance of MonthSummary from a dict
month_summary_from_dict = MonthSummary.from_dict(month_summary_dict)

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