from moonsdk.models.tatum_transaction_event import TatumTransactionEvent
# TODO update the JSON string below
json = "{}"
# create an instance of TatumTransactionEvent from a JSON string
tatum_transaction_event_instance = TatumTransactionEvent.from_json(json)
# print the JSON string representation of the object
print TatumTransactionEvent.to_json()
# convert the object into a dict
tatum_transaction_event_dict = tatum_transaction_event_instance.to_dict()
# create an instance of TatumTransactionEvent from a dict
tatum_transaction_event_form_dict = tatum_transaction_event.from_dict(tatum_transaction_event_dict)