SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
(t *time.Time)
| 54 | |
| 55 | // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil. |
| 56 | func (uc *UserCreate) SetNillableUpdatedAt(t *time.Time) *UserCreate { |
| 57 | if t != nil { |
| 58 | uc.SetUpdatedAt(*t) |
| 59 | } |
| 60 | return uc |
| 61 | } |
| 62 | |
| 63 | // SetDeletedAt sets the "deleted_at" field. |
| 64 | func (uc *UserCreate) SetDeletedAt(t time.Time) *UserCreate { |
nothing calls this directly
no test coverage detected