SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
(t *time.Time)
| 412 | |
| 413 | // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil. |
| 414 | func (nuo *NodeUpdateOne) SetNillableDeletedAt(t *time.Time) *NodeUpdateOne { |
| 415 | if t != nil { |
| 416 | nuo.SetDeletedAt(*t) |
| 417 | } |
| 418 | return nuo |
| 419 | } |
| 420 | |
| 421 | // ClearDeletedAt clears the value of the "deleted_at" field. |
| 422 | func (nuo *NodeUpdateOne) ClearDeletedAt() *NodeUpdateOne { |
nothing calls this directly
no test coverage detected