SetStatus sets the "status" field.
(u user.Status)
| 1133 | |
| 1134 | // SetStatus sets the "status" field. |
| 1135 | func (uuo *UserUpdateOne) SetStatus(u user.Status) *UserUpdateOne { |
| 1136 | uuo.mutation.SetStatus(u) |
| 1137 | return uuo |
| 1138 | } |
| 1139 | |
| 1140 | // SetNillableStatus sets the "status" field if the given value is not nil. |
| 1141 | func (uuo *UserUpdateOne) SetNillableStatus(u *user.Status) *UserUpdateOne { |
no test coverage detected