from moonsdk.models.tron_transaction_input import TronTransactionInput# TODO update the JSON string belowjson ="{}"# create an instance of TronTransactionInput from a JSON stringtron_transaction_input_instance = TronTransactionInput.from_json(json)# print the JSON string representation of the objectprint(TronTransactionInput.to_json())# convert the object into a dicttron_transaction_input_dict = tron_transaction_input_instance.to_dict()# create an instance of TronTransactionInput from a dicttron_transaction_input_form_dict = tron_transaction_input.from_dict(tron_transaction_input_dict)