Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

PostTransactionsWrapper.md

File metadata and controls

30 lines (21 loc) · 1.1 KB

PostTransactionsWrapper

Properties

Name Type Description Notes
transaction NewTransaction [optional]
transactions List[NewTransaction] [optional]

Example

from ynab.models.post_transactions_wrapper import PostTransactionsWrapper

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

# convert the object into a dict
post_transactions_wrapper_dict = post_transactions_wrapper_instance.to_dict()
# create an instance of PostTransactionsWrapper from a dict
post_transactions_wrapper_from_dict = PostTransactionsWrapper.from_dict(post_transactions_wrapper_dict)

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