Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.24 KB

SaveScheduledTransaction.md

File metadata and controls

37 lines (28 loc) · 2.24 KB

SaveScheduledTransaction

Properties

Name Type Description Notes
account_id str
var_date date The scheduled transaction date in ISO format (e.g. 2016-12-01). This should be a future date no more than 5 years into the future.
amount int The scheduled transaction amount in milliunits format. [optional]
payee_id str The payee for the scheduled transaction. To create a transfer between two accounts, use the account transfer payee pointing to the target account. Account transfer payees are specified as `transfer_payee_id` on the account resource. [optional]
payee_name str The payee name for the the scheduled transaction. If a `payee_name` value is provided and `payee_id` has a null value, the `payee_name` value will be used to resolve the payee by either (1) a payee with the same name or (2) creation of a new payee. [optional]
category_id str The category for the scheduled transaction. Credit Card Payment categories are not permitted. Creating a split scheduled transaction is not currently supported. [optional]
memo str [optional]
flag_color TransactionFlagColor [optional]
frequency ScheduledTransactionFrequency [optional]

Example

from ynab.models.save_scheduled_transaction import SaveScheduledTransaction

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

# convert the object into a dict
save_scheduled_transaction_dict = save_scheduled_transaction_instance.to_dict()
# create an instance of SaveScheduledTransaction from a dict
save_scheduled_transaction_from_dict = SaveScheduledTransaction.from_dict(save_scheduled_transaction_dict)

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