from moonsdk.models.internal_transaction import InternalTransaction# TODO update the JSON string belowjson ="{}"# create an instance of InternalTransaction from a JSON stringinternal_transaction_instance = InternalTransaction.from_json(json)# print the JSON string representation of the objectprint InternalTransaction.to_json()# convert the object into a dictinternal_transaction_dict = internal_transaction_instance.to_dict()# create an instance of InternalTransaction from a dictinternal_transaction_form_dict = internal_transaction.from_dict(internal_transaction_dict)