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