Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 2.23 KB

ScheduledTransactionDetail.md

File metadata and controls

45 lines (36 loc) · 2.23 KB

ScheduledTransactionDetail

Properties

Name Type Description Notes
id str
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 str
payee_id str [optional]
category_id str [optional]
transfer_account_id str 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.
account_name str
payee_name str [optional]
category_name str The name of the category. If a split scheduled transaction, this will be 'Split'. [optional]
subtransactions List[ScheduledSubTransaction] If a split scheduled transaction, the subtransactions.

Example

from ynab.models.scheduled_transaction_detail import ScheduledTransactionDetail

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

# convert the object into a dict
scheduled_transaction_detail_dict = scheduled_transaction_detail_instance.to_dict()
# create an instance of ScheduledTransactionDetail from a dict
scheduled_transaction_detail_from_dict = ScheduledTransactionDetail.from_dict(scheduled_transaction_detail_dict)

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