from moonsdk.models.transaction_response import TransactionResponse# TODO update the JSON string belowjson ="{}"# create an instance of TransactionResponse from a JSON stringtransaction_response_instance = TransactionResponse.from_json(json)# print the JSON string representation of the objectprint(TransactionResponse.to_json())# convert the object into a dicttransaction_response_dict = transaction_response_instance.to_dict()# create an instance of TransactionResponse from a dicttransaction_response_form_dict = transaction_response.from_dict(transaction_response_dict)