SetStatus sets the "status" field.
(u user.Status)
| 114 | |
| 115 | // SetStatus sets the "status" field. |
| 116 | func (uu *UserUpdate) SetStatus(u user.Status) *UserUpdate { |
| 117 | uu.mutation.SetStatus(u) |
| 118 | return uu |
| 119 | } |
| 120 | |
| 121 | // SetNillableStatus sets the "status" field if the given value is not nil. |
| 122 | func (uu *UserUpdate) SetNillableStatus(u *user.Status) *UserUpdate { |
no test coverage detected