SetNillableUserTasks sets the "user_tasks" field if the given value is not nil.
(i *int)
| 388 | |
| 389 | // SetNillableUserTasks sets the "user_tasks" field if the given value is not nil. |
| 390 | func (tuo *TaskUpdateOne) SetNillableUserTasks(i *int) *TaskUpdateOne { |
| 391 | if i != nil { |
| 392 | tuo.SetUserTasks(*i) |
| 393 | } |
| 394 | return tuo |
| 395 | } |
| 396 | |
| 397 | // ClearUserTasks clears the value of the "user_tasks" field. |
| 398 | func (tuo *TaskUpdateOne) ClearUserTasks() *TaskUpdateOne { |
nothing calls this directly
no test coverage detected