SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
(t *time.Time)
| 47 | |
| 48 | // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil. |
| 49 | func (tc *TaskCreate) SetNillableUpdatedAt(t *time.Time) *TaskCreate { |
| 50 | if t != nil { |
| 51 | tc.SetUpdatedAt(*t) |
| 52 | } |
| 53 | return tc |
| 54 | } |
| 55 | |
| 56 | // SetDeletedAt sets the "deleted_at" field. |
| 57 | func (tc *TaskCreate) SetDeletedAt(t time.Time) *TaskCreate { |
nothing calls this directly
no test coverage detected