from moonsdk.models.eos_input import EosInput# TODO update the JSON string belowjson ="{}"# create an instance of EosInput from a JSON stringeos_input_instance = EosInput.from_json(json)# print the JSON string representation of the objectprint(EosInput.to_json())# convert the object into a dicteos_input_dict = eos_input_instance.to_dict()# create an instance of EosInput from a dicteos_input_form_dict = eos_input.from_dict(eos_input_dict)