from moonsdk.models.ens_resolve_input import EnsResolveInput# TODO update the JSON string belowjson ="{}"# create an instance of EnsResolveInput from a JSON stringens_resolve_input_instance = EnsResolveInput.from_json(json)# print the JSON string representation of the objectprint(EnsResolveInput.to_json())# convert the object into a dictens_resolve_input_dict = ens_resolve_input_instance.to_dict()# create an instance of EnsResolveInput from a dictens_resolve_input_form_dict = ens_resolve_input.from_dict(ens_resolve_input_dict)