Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.96 KB

File metadata and controls

41 lines (32 loc) · 1.96 KB

ScheduledTransactionSummaryBase

Properties

Name Type Description Notes
id UUID
date_first date The first date for which the Scheduled Transaction was scheduled.
date_next date The next date for which the Scheduled Transaction is scheduled.
frequency str
amount int The scheduled transaction amount in milliunits format
memo str [optional]
flag_color TransactionFlagColor [optional]
flag_name str The customized name of a transaction flag [optional]
account_id UUID
payee_id UUID [optional]
category_id UUID [optional]
transfer_account_id UUID If a transfer, the account_id which the scheduled transaction transfers to [optional]
deleted bool Whether or not the scheduled transaction has been deleted. Deleted scheduled transactions will only be included in delta requests.

Example

from ynab.models.scheduled_transaction_summary_base import ScheduledTransactionSummaryBase

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

# convert the object into a dict
scheduled_transaction_summary_base_dict = scheduled_transaction_summary_base_instance.to_dict()
# create an instance of ScheduledTransactionSummaryBase from a dict
scheduled_transaction_summary_base_from_dict = ScheduledTransactionSummaryBase.from_dict(scheduled_transaction_summary_base_dict)

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