from moonsdk.models.transaction_response_info import TransactionResponseInfo# TODO update the JSON string belowjson ="{}"# create an instance of TransactionResponseInfo from a JSON stringtransaction_response_info_instance = TransactionResponseInfo.from_json(json)# print the JSON string representation of the objectprint(TransactionResponseInfo.to_json())# convert the object into a dicttransaction_response_info_dict = transaction_response_info_instance.to_dict()# create an instance of TransactionResponseInfo from a dicttransaction_response_info_form_dict = transaction_response_info.from_dict(transaction_response_info_dict)