Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

PatchTransactionsWrapper.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

PatchTransactionsWrapper

Properties

Name Type Description Notes
transactions List[SaveTransactionWithIdOrImportId]

Example

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)

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