SetEmail sets the "email" field.
(s string)
| 76 | |
| 77 | // SetEmail sets the "email" field. |
| 78 | func (uc *UserCreate) SetEmail(s string) *UserCreate { |
| 79 | uc.mutation.SetEmail(s) |
| 80 | return uc |
| 81 | } |
| 82 | |
| 83 | // SetNick sets the "nick" field. |
| 84 | func (uc *UserCreate) SetNick(s string) *UserCreate { |
nothing calls this directly
no outgoing calls
no test coverage detected