from moonsdk.models.account_response import AccountResponse# TODO update the JSON string belowjson ="{}"# create an instance of AccountResponse from a JSON stringaccount_response_instance = AccountResponse.from_json(json)# print the JSON string representation of the objectprint(AccountResponse.to_json())# convert the object into a dictaccount_response_dict = account_response_instance.to_dict()# create an instance of AccountResponse from a dictaccount_response_form_dict = account_response.from_dict(account_response_dict)