from moonsdk.models.account_controller_response import AccountControllerResponse# TODO update the JSON string belowjson ="{}"# create an instance of AccountControllerResponse from a JSON stringaccount_controller_response_instance = AccountControllerResponse.from_json(json)# print the JSON string representation of the objectprint AccountControllerResponse.to_json()# convert the object into a dictaccount_controller_response_dict = account_controller_response_instance.to_dict()# create an instance of AccountControllerResponse from a dictaccount_controller_response_form_dict = account_controller_response.from_dict(account_controller_response_dict)