from moonsdk.models.tron_input import TronInput# TODO update the JSON string belowjson ="{}"# create an instance of TronInput from a JSON stringtron_input_instance = TronInput.from_json(json)# print the JSON string representation of the objectprint(TronInput.to_json())# convert the object into a dicttron_input_dict = tron_input_instance.to_dict()# create an instance of TronInput from a dicttron_input_form_dict = tron_input.from_dict(tron_input_dict)