Skip to content

Files

Latest commit

f5c7fc2 · Dec 31, 2024

History

History
29 lines (20 loc) · 1.14 KB

PostScheduledTransactionWrapper.md

File metadata and controls

29 lines (20 loc) · 1.14 KB

PostScheduledTransactionWrapper

Properties

Name Type Description Notes
scheduled_transaction SaveScheduledTransaction

Example

from ynab.models.post_scheduled_transaction_wrapper import PostScheduledTransactionWrapper

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

# convert the object into a dict
post_scheduled_transaction_wrapper_dict = post_scheduled_transaction_wrapper_instance.to_dict()
# create an instance of PostScheduledTransactionWrapper from a dict
post_scheduled_transaction_wrapper_from_dict = PostScheduledTransactionWrapper.from_dict(post_scheduled_transaction_wrapper_dict)

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