from moonsdk.models.abi_output import AbiOutput# TODO update the JSON string belowjson ="{}"# create an instance of AbiOutput from a JSON stringabi_output_instance = AbiOutput.from_json(json)# print the JSON string representation of the objectprint AbiOutput.to_json()# convert the object into a dictabi_output_dict = abi_output_instance.to_dict()# create an instance of AbiOutput from a dictabi_output_form_dict = abi_output.from_dict(abi_output_dict)