SetNillablePassword sets the "password" field if the given value is not nil.
(s *string)
| 1119 | |
| 1120 | // SetNillablePassword sets the "password" field if the given value is not nil. |
| 1121 | func (uuo *UserUpdateOne) SetNillablePassword(s *string) *UserUpdateOne { |
| 1122 | if s != nil { |
| 1123 | uuo.SetPassword(*s) |
| 1124 | } |
| 1125 | return uuo |
| 1126 | } |
| 1127 | |
| 1128 | // ClearPassword clears the value of the "password" field. |
| 1129 | func (uuo *UserUpdateOne) ClearPassword() *UserUpdateOne { |
nothing calls this directly
no test coverage detected