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