SetSlaveKey sets the "slave_key" field.
(s string)
| 121 | |
| 122 | // SetSlaveKey sets the "slave_key" field. |
| 123 | func (nu *NodeUpdate) SetSlaveKey(s string) *NodeUpdate { |
| 124 | nu.mutation.SetSlaveKey(s) |
| 125 | return nu |
| 126 | } |
| 127 | |
| 128 | // SetNillableSlaveKey sets the "slave_key" field if the given value is not nil. |
| 129 | func (nu *NodeUpdate) SetNillableSlaveKey(s *string) *NodeUpdate { |
no outgoing calls
no test coverage detected