Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 2.47 KB

File metadata and controls

47 lines (38 loc) · 2.47 KB

ScheduledTransactionDetail

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.
amount_formatted str The scheduled transaction amount formatted in the plan's currency format [optional]
amount_currency float The scheduled transaction amount as a decimal currency amount [optional]
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]