from moonsdk.models.bitcoin_cash_api_response import BitcoinCashAPIResponse# TODO update the JSON string belowjson ="{}"# create an instance of BitcoinCashAPIResponse from a JSON stringbitcoin_cash_api_response_instance = BitcoinCashAPIResponse.from_json(json)# print the JSON string representation of the objectprint(BitcoinCashAPIResponse.to_json())# convert the object into a dictbitcoin_cash_api_response_dict = bitcoin_cash_api_response_instance.to_dict()# create an instance of BitcoinCashAPIResponse from a dictbitcoin_cash_api_response_form_dict = bitcoin_cash_api_response.from_dict(bitcoin_cash_api_response_dict)