SetEmail sets the "email" field.
(s string)
| 1085 | |
| 1086 | // SetEmail sets the "email" field. |
| 1087 | func (uuo *UserUpdateOne) SetEmail(s string) *UserUpdateOne { |
| 1088 | uuo.mutation.SetEmail(s) |
| 1089 | return uuo |
| 1090 | } |
| 1091 | |
| 1092 | // SetNillableEmail sets the "email" field if the given value is not nil. |
| 1093 | func (uuo *UserUpdateOne) SetNillableEmail(s *string) *UserUpdateOne { |
no test coverage detected