SetNillableEmail sets the "email" field if the given value is not nil.
(s *string)
| 1091 | |
| 1092 | // SetNillableEmail sets the "email" field if the given value is not nil. |
| 1093 | func (uuo *UserUpdateOne) SetNillableEmail(s *string) *UserUpdateOne { |
| 1094 | if s != nil { |
| 1095 | uuo.SetEmail(*s) |
| 1096 | } |
| 1097 | return uuo |
| 1098 | } |
| 1099 | |
| 1100 | // SetNick sets the "nick" field. |
| 1101 | func (uuo *UserUpdateOne) SetNick(s string) *UserUpdateOne { |