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