SetPassword sets the "password" field.
(s string)
| 1113 | |
| 1114 | // SetPassword sets the "password" field. |
| 1115 | func (uuo *UserUpdateOne) SetPassword(s string) *UserUpdateOne { |
| 1116 | uuo.mutation.SetPassword(s) |
| 1117 | return uuo |
| 1118 | } |
| 1119 | |
| 1120 | // SetNillablePassword sets the "password" field if the given value is not nil. |
| 1121 | func (uuo *UserUpdateOne) SetNillablePassword(s *string) *UserUpdateOne { |
no test coverage detected