Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1014 Bytes

PutTransactionWrapper.md

File metadata and controls

29 lines (20 loc) · 1014 Bytes

PutTransactionWrapper

Properties

Name Type Description Notes
transaction ExistingTransaction

Example

from ynab.models.put_transaction_wrapper import PutTransactionWrapper

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

# convert the object into a dict
put_transaction_wrapper_dict = put_transaction_wrapper_instance.to_dict()
# create an instance of PutTransactionWrapper from a dict
put_transaction_wrapper_from_dict = PutTransactionWrapper.from_dict(put_transaction_wrapper_dict)

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