SetType sets the "type" field.
(s string)
| 58 | |
| 59 | // SetType sets the "type" field. |
| 60 | func (tu *TaskUpdate) SetType(s string) *TaskUpdate { |
| 61 | tu.mutation.SetType(s) |
| 62 | return tu |
| 63 | } |
| 64 | |
| 65 | // SetNillableType sets the "type" field if the given value is not nil. |
| 66 | func (tu *TaskUpdate) SetNillableType(s *string) *TaskUpdate { |
no outgoing calls
no test coverage detected