from moonsdk.models.litecoin_input import LitecoinInput# TODO update the JSON string belowjson ="{}"# create an instance of LitecoinInput from a JSON stringlitecoin_input_instance = LitecoinInput.from_json(json)# print the JSON string representation of the objectprint(LitecoinInput.to_json())# convert the object into a dictlitecoin_input_dict = litecoin_input_instance.to_dict()# create an instance of LitecoinInput from a dictlitecoin_input_form_dict = litecoin_input.from_dict(litecoin_input_dict)