from moonsdk.models.bitcoin_cash_input import BitcoinCashInput# TODO update the JSON string belowjson ="{}"# create an instance of BitcoinCashInput from a JSON stringbitcoin_cash_input_instance = BitcoinCashInput.from_json(json)# print the JSON string representation of the objectprint(BitcoinCashInput.to_json())# convert the object into a dictbitcoin_cash_input_dict = bitcoin_cash_input_instance.to_dict()# create an instance of BitcoinCashInput from a dictbitcoin_cash_input_form_dict = bitcoin_cash_input.from_dict(bitcoin_cash_input_dict)