SetStatus sets the "status" field.
(n node.Status)
| 59 | |
| 60 | // SetStatus sets the "status" field. |
| 61 | func (nu *NodeUpdate) SetStatus(n node.Status) *NodeUpdate { |
| 62 | nu.mutation.SetStatus(n) |
| 63 | return nu |
| 64 | } |
| 65 | |
| 66 | // SetNillableStatus sets the "status" field if the given value is not nil. |
| 67 | func (nu *NodeUpdate) SetNillableStatus(n *node.Status) *NodeUpdate { |
no test coverage detected