from lighter.models.transfer_history import TransferHistory
# TODO update the JSON string below
json = "{}"
# create an instance of TransferHistory from a JSON string
transfer_history_instance = TransferHistory.from_json(json)
# print the JSON string representation of the object
print(TransferHistory.to_json())
# convert the object into a dict
transfer_history_dict = transfer_history_instance.to_dict()
# create an instance of TransferHistory from a dict
transfer_history_from_dict = TransferHistory.from_dict(transfer_history_dict)