from moonsdk.models.create_account_input import CreateAccountInput# TODO update the JSON string belowjson ="{}"# create an instance of CreateAccountInput from a JSON stringcreate_account_input_instance = CreateAccountInput.from_json(json)# print the JSON string representation of the objectprint(CreateAccountInput.to_json())# convert the object into a dictcreate_account_input_dict = create_account_input_instance.to_dict()# create an instance of CreateAccountInput from a dictcreate_account_input_form_dict = create_account_input.from_dict(create_account_input_dict)