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 *MetaCreate) SetNillableUpdatedAt(v *time.Time) *MetaCreate { |
| 48 | if v != nil { |
| 49 | _c.SetUpdatedAt(*v) |
| 50 | } |
| 51 | return _c |
| 52 | } |
| 53 | |
| 54 | // SetKey sets the "key" field. |
| 55 | func (_c *MetaCreate) SetKey(v string) *MetaCreate { |
nothing calls this directly
no test coverage detected