-
Notifications
You must be signed in to change notification settings - Fork 10
Add generated model classes and new api methods #117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add generated model classes and new api methods #117
Conversation
| public String toString() { | ||
| StringBuilder sb = new StringBuilder(); | ||
| sb.append("class Changeset {\n"); | ||
| sb.append(" ").append(toIndentedString(super.toString())).append("\n"); | ||
| sb.append(" password: ").append(toIndentedString(password)).append("\n"); | ||
| sb.append(" email: ").append(toIndentedString(email)).append("\n"); | ||
| sb.append(" phone: ").append(toIndentedString(phone)).append("\n"); | ||
| sb.append(" authenticationMethodType: ").append(toIndentedString(authenticationMethodType)).append("\n"); | ||
| sb.append(" name: ").append(toIndentedString(name)).append("\n"); | ||
| sb.append("}"); | ||
| return sb.toString(); | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How does this class work considering the keys can be dynamic? I'm not seeing any code that sets the value correctly when there's a dynamic key.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It extends HashMap so I think that is how it handles it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But I don't see any code that sets the value of the hash, but maybe I'm missing it somewhere.
5f398ae to
7c18139
Compare
No description provided.