SetName sets the "name" field.
(s string)
| 73 | |
| 74 | // SetName sets the "name" field. |
| 75 | func (nu *NodeUpdate) SetName(s string) *NodeUpdate { |
| 76 | nu.mutation.SetName(s) |
| 77 | return nu |
| 78 | } |
| 79 | |
| 80 | // SetNillableName sets the "name" field if the given value is not nil. |
| 81 | func (nu *NodeUpdate) SetNillableName(s *string) *NodeUpdate { |
no outgoing calls
no test coverage detected