from moonsdk.models.litecoin_transaction_input import LitecoinTransactionInput# TODO update the JSON string belowjson ="{}"# create an instance of LitecoinTransactionInput from a JSON stringlitecoin_transaction_input_instance = LitecoinTransactionInput.from_json(json)# print the JSON string representation of the objectprint(LitecoinTransactionInput.to_json())# convert the object into a dictlitecoin_transaction_input_dict = litecoin_transaction_input_instance.to_dict()# create an instance of LitecoinTransactionInput from a dictlitecoin_transaction_input_form_dict = litecoin_transaction_input.from_dict(litecoin_transaction_input_dict)