from lighter.models.enriched_tx import EnrichedTx
# TODO update the JSON string below
json = "{}"
# create an instance of EnrichedTx from a JSON string
enriched_tx_instance = EnrichedTx.from_json(json)
# print the JSON string representation of the object
print(EnrichedTx.to_json())
# convert the object into a dict
enriched_tx_dict = enriched_tx_instance.to_dict()
# create an instance of EnrichedTx from a dict
enriched_tx_from_dict = EnrichedTx.from_dict(enriched_tx_dict){{ message }}
