from moonsdk.models.eos_transaction_input import EosTransactionInput# TODO update the JSON string belowjson ="{}"# create an instance of EosTransactionInput from a JSON stringeos_transaction_input_instance = EosTransactionInput.from_json(json)# print the JSON string representation of the objectprint(EosTransactionInput.to_json())# convert the object into a dicteos_transaction_input_dict = eos_transaction_input_instance.to_dict()# create an instance of EosTransactionInput from a dicteos_transaction_input_form_dict = eos_transaction_input.from_dict(eos_transaction_input_dict)