SetPassword sets the "password" field.
(s string)
| 88 | |
| 89 | // SetPassword sets the "password" field. |
| 90 | func (uc *UserCreate) SetPassword(s string) *UserCreate { |
| 91 | uc.mutation.SetPassword(s) |
| 92 | return uc |
| 93 | } |
| 94 | |
| 95 | // SetNillablePassword sets the "password" field if the given value is not nil. |
| 96 | func (uc *UserCreate) SetNillablePassword(s *string) *UserCreate { |