Name | Type | Description | Notes |
---|---|---|---|
transaction | NewTransaction | [optional] | |
transactions | List[NewTransaction] | [optional] |
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)