Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.13 KB

PutScheduledTransactionWrapper.md

File metadata and controls

29 lines (20 loc) · 1.13 KB

PutScheduledTransactionWrapper

Properties

Name Type Description Notes
scheduled_transaction SaveScheduledTransaction

Example

from ynab.models.put_scheduled_transaction_wrapper import PutScheduledTransactionWrapper

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

# convert the object into a dict
put_scheduled_transaction_wrapper_dict = put_scheduled_transaction_wrapper_instance.to_dict()
# create an instance of PutScheduledTransactionWrapper from a dict
put_scheduled_transaction_wrapper_from_dict = PutScheduledTransactionWrapper.from_dict(put_scheduled_transaction_wrapper_dict)

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