SetStatus sets the "status" field.
(u user.Status)
| 102 | |
| 103 | // SetStatus sets the "status" field. |
| 104 | func (uc *UserCreate) SetStatus(u user.Status) *UserCreate { |
| 105 | uc.mutation.SetStatus(u) |
| 106 | return uc |
| 107 | } |
| 108 | |
| 109 | // SetNillableStatus sets the "status" field if the given value is not nil. |
| 110 | func (uc *UserCreate) SetNillableStatus(u *user.Status) *UserCreate { |
no test coverage detected