What is the fix for the putProfileProperty() in version 10.0.0?
// Create a User Account
user = UserBuilder.instance()
.setEmail(email)
.setFirstName("Joe")
.setLastName("Coder")
.setPassword(password)
.setSecurityQuestion("Favorite security question?")
.setSecurityQuestionAnswer("None of them!")
//.putProfileProperty("division", "Seven") // key/value pairs predefined in the user profile schema //TODO: fix me
.setActive(true)
.addGroup(group.getId()) // add user to the newly created group
.buildAndCreate(userApi);