SetNick sets the "nick" field.
(s string)
| 82 | |
| 83 | // SetNick sets the "nick" field. |
| 84 | func (uc *UserCreate) SetNick(s string) *UserCreate { |
| 85 | uc.mutation.SetNick(s) |
| 86 | return uc |
| 87 | } |
| 88 | |
| 89 | // SetPassword sets the "password" field. |
| 90 | func (uc *UserCreate) SetPassword(s string) *UserCreate { |
nothing calls this directly
no outgoing calls
no test coverage detected