Name | Type | Description | Notes |
---|---|---|---|
transactions | List[SaveTransactionWithIdOrImportId] |
from ynab.models.patch_transactions_wrapper import PatchTransactionsWrapper
# TODO update the JSON string below
json = "{}"
# create an instance of PatchTransactionsWrapper from a JSON string
patch_transactions_wrapper_instance = PatchTransactionsWrapper.from_json(json)
# print the JSON string representation of the object
print(PatchTransactionsWrapper.to_json())
# convert the object into a dict
patch_transactions_wrapper_dict = patch_transactions_wrapper_instance.to_dict()
# create an instance of PatchTransactionsWrapper from a dict
patch_transactions_wrapper_from_dict = PatchTransactionsWrapper.from_dict(patch_transactions_wrapper_dict)