Last updated
from moonsdk.models.account_controller_response_data import AccountControllerResponseData
# TODO update the JSON string below
json = "{}"
# create an instance of AccountControllerResponseData from a JSON string
account_controller_response_data_instance = AccountControllerResponseData.from_json(json)
# print the JSON string representation of the object
print AccountControllerResponseData.to_json()
# convert the object into a dict
account_controller_response_data_dict = account_controller_response_data_instance.to_dict()
# create an instance of AccountControllerResponseData from a dict
account_controller_response_data_form_dict = account_controller_response_data.from_dict(account_controller_response_data_dict)