You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The scheduled subtransaction amount in milliunits format
memo
str
[optional]
payee_id
UUID
[optional]
payee_name
str
[optional]
category_id
UUID
[optional]
category_name
str
[optional]
transfer_account_id
UUID
If a transfer, the account_id which the scheduled subtransaction transfers to
[optional]
deleted
bool
Whether or not the scheduled subtransaction has been deleted. Deleted scheduled subtransactions will only be included in delta requests.
Example
fromynab.models.scheduled_sub_transaction_baseimportScheduledSubTransactionBase# TODO update the JSON string belowjson="{}"# create an instance of ScheduledSubTransactionBase from a JSON stringscheduled_sub_transaction_base_instance=ScheduledSubTransactionBase.from_json(json)
# print the JSON string representation of the objectprint(ScheduledSubTransactionBase.to_json())
# convert the object into a dictscheduled_sub_transaction_base_dict=scheduled_sub_transaction_base_instance.to_dict()
# create an instance of ScheduledSubTransactionBase from a dictscheduled_sub_transaction_base_from_dict=ScheduledSubTransactionBase.from_dict(scheduled_sub_transaction_base_dict)