SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
(v *time.Time)
| 48 | |
| 49 | // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil. |
| 50 | func (_c *AlertCreate) SetNillableUpdatedAt(v *time.Time) *AlertCreate { |
| 51 | if v != nil { |
| 52 | _c.SetUpdatedAt(*v) |
| 53 | } |
| 54 | return _c |
| 55 | } |
| 56 | |
| 57 | // SetScenario sets the "scenario" field. |
| 58 | func (_c *AlertCreate) SetScenario(v string) *AlertCreate { |
nothing calls this directly
no test coverage detected