from moonsdk.models.bitcoin_api_response import BitcoinAPIResponse# TODO update the JSON string belowjson ="{}"# create an instance of BitcoinAPIResponse from a JSON stringbitcoin_api_response_instance = BitcoinAPIResponse.from_json(json)# print the JSON string representation of the objectprint(BitcoinAPIResponse.to_json())# convert the object into a dictbitcoin_api_response_dict = bitcoin_api_response_instance.to_dict()# create an instance of BitcoinAPIResponse from a dictbitcoin_api_response_form_dict = bitcoin_api_response.from_dict(bitcoin_api_response_dict)