| 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. |
|
| categories |
List[CategoryBase] |
The plan month categories. Amounts (budgeted, activity, balance, etc.) are specific to the {month} parameter specified. |
|
from ynab.models.month_detail_base import MonthDetailBase
# TODO update the JSON string below
json = "{}"
# create an instance of MonthDetailBase from a JSON string
month_detail_base_instance = MonthDetailBase.from_json(json)
# print the JSON string representation of the object
print(MonthDetailBase.to_json())
# convert the object into a dict
month_detail_base_dict = month_detail_base_instance.to_dict()
# create an instance of MonthDetailBase from a dict
month_detail_base_from_dict = MonthDetailBase.from_dict(month_detail_base_dict)
[Back to Model list] [Back to API list] [Back to README]